summaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2013-03-11 17:50:12 +0000
committerVincent Sanders <vince@netsurf-browser.org>2013-03-11 17:53:52 +0000
commit95e726c7cc21c52829548340142d266cdb8f1123 (patch)
tree35242bf31d2e00858124f568b06c8ff51290416c /image
parent41e4928e25039119b97035640cf97b1949a129d4 (diff)
downloadnetsurf-95e726c7cc21c52829548340142d266cdb8f1123.tar.gz
netsurf-95e726c7cc21c52829548340142d266cdb8f1123.tar.bz2
split sources lists out to their subdirectories as first step towards using core buildsystem
Diffstat (limited to 'image')
-rw-r--r--image/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/image/Makefile b/image/Makefile
new file mode 100644
index 000000000..becd944cd
--- /dev/null
+++ b/image/Makefile
@@ -0,0 +1,17 @@
+# Image content handlers sources
+
+# S_IMAGE are sources related to image management
+S_IMAGE_YES := image.c image_cache.c
+S_IMAGE_NO :=
+S_IMAGE_$(NETSURF_USE_BMP) += bmp.c ico.c
+S_IMAGE_$(NETSURF_USE_GIF) += gif.c
+S_IMAGE_$(NETSURF_USE_JPEG) += jpeg.c
+S_IMAGE_$(NETSURF_USE_MNG) += mng.c
+S_IMAGE_$(NETSURF_USE_ROSPRITE) += nssprite.c
+S_IMAGE_$(NETSURF_USE_PNG) += png.c
+S_IMAGE_$(NETSURF_USE_NSSVG) += svg.c
+S_IMAGE_$(NETSURF_USE_RSVG) += rsvg.c
+S_IMAGE_$(NETSURF_USE_WEBP) += webp.c
+S_IMAGE_$(NETSURF_USE_VIDEO) += video.c
+
+S_IMAGE := $(addprefix image/,$(S_IMAGE_YES))