summaryrefslogtreecommitdiff
path: root/Makefile.sources
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2011-02-15 23:18:10 +0000
committerVincent Sanders <vince@netsurf-browser.org>2011-02-15 23:18:10 +0000
commitfa98e3d76ada300d69e04816bfe15b2d560c9f7d (patch)
treeb044b5053a013838723e5206ea98d2cf1660409d /Makefile.sources
parent4f47cad962ab9cb49db5f249b740cdff9ba40b20 (diff)
downloadnetsurf-fa98e3d76ada300d69e04816bfe15b2d560c9f7d.tar.gz
netsurf-fa98e3d76ada300d69e04816bfe15b2d560c9f7d.tar.bz2
add about: fetcher
rename fetchers to be more sensible svn path=/trunk/netsurf/; revision=11692
Diffstat (limited to 'Makefile.sources')
-rw-r--r--Makefile.sources6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.sources b/Makefile.sources
index b948557b7..a8e18e1c0 100644
--- a/Makefile.sources
+++ b/Makefile.sources
@@ -4,8 +4,9 @@
# Included by main makefile -- indicates generic sources for every build.
#
-S_CONTENT := content.c dirlist.c fetch.c hlcache.c llcache.c urldb.c \
- fetchers/fetch_curl.c fetchers/fetch_data.c fetchers/fetch_file.c
+S_CONTENT := content.c dirlist.c fetch.c hlcache.c llcache.c urldb.c
+
+S_FETCHERS := curl.c data.c file.c about.c
S_CSS := css.c dump.c internal.c select.c utils.c
@@ -22,6 +23,7 @@ S_DESKTOP := cookies.c history_global_core.c hotlist.c knockout.c \
# S_COMMON are sources common to all builds
S_COMMON := $(addprefix content/,$(S_CONTENT)) \
+ $(addprefix content/fetchers/,$(S_FETCHERS)) \
$(addprefix css/,$(S_CSS)) \
$(addprefix render/,$(S_RENDER)) \
$(addprefix utils/,$(S_UTILS)) \