summaryrefslogtreecommitdiff
path: root/content/Makefile
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-04-10 11:56:15 +0100
committerVincent Sanders <vince@kyllikki.org>2014-05-13 15:53:02 +0100
commit05932293f659c0edfaa0352208ff2a89712b71ac (patch)
tree02242193607b1177b3a792dc911f9bc60a588971 /content/Makefile
parent4a49ff5266aa1cc483b74fb084503cbc4c4cd1a2 (diff)
downloadnetsurf-05932293f659c0edfaa0352208ff2a89712b71ac.tar.gz
netsurf-05932293f659c0edfaa0352208ff2a89712b71ac.tar.bz2
Add filesystem based backing store
Diffstat (limited to 'content/Makefile')
-rw-r--r--content/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/content/Makefile b/content/Makefile
index 6482f30a8..ab257eaea 100644
--- a/content/Makefile
+++ b/content/Makefile
@@ -3,4 +3,9 @@
S_CONTENT := content.c content_factory.c dirlist.c fetch.c hlcache.c \
llcache.c mimesniff.c urldb.c no_backing_store.c
+# Make filesystem backing store available
+ifeq ($(NETSURF_FS_BACKING_STORE),YES)
+ S_CONTENT += fs_backing_store.c
+endif
+
S_CONTENT := $(addprefix content/,$(S_CONTENT))