summaryrefslogtreecommitdiff
path: root/content/Makefile
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2020-07-03 18:07:21 +0100
committerVincent Sanders <vince@kyllikki.org>2020-07-03 18:07:21 +0100
commit0908925ca67652e4e335c5f8ef4139ca6f60904f (patch)
tree13dc0f6975b3f33b3f451f3efe6374151d05f156 /content/Makefile
parent1697118e227406764d1cfad78a5fcc9febe152be (diff)
downloadnetsurf-0908925ca67652e4e335c5f8ef4139ca6f60904f.tar.gz
netsurf-0908925ca67652e4e335c5f8ef4139ca6f60904f.tar.bz2
move the file fetcher sources into a single directory
Diffstat (limited to 'content/Makefile')
-rw-r--r--content/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/content/Makefile b/content/Makefile
index abc5a2463..188d0f46e 100644
--- a/content/Makefile
+++ b/content/Makefile
@@ -3,7 +3,6 @@
S_CONTENT := \
content.c \
content_factory.c \
- dirlist.c \
fetch.c \
hlcache.c \
llcache.c \
@@ -18,10 +17,12 @@ ifeq ($(NETSURF_FS_BACKING_STORE),YES)
endif
-# Content fetchers sources
+# Content fetcher sources
include content/fetchers/Makefile
-# Content handlers
+S_FETCHERS := $(addprefix content/,$(S_FETCHERS))
+
+# Content handler sources
include content/handlers/Makefile
S_CONTENT := $(addprefix content/,$(S_CONTENT))