summaryrefslogtreecommitdiff
path: root/content/Makefile
blob: 02490618a29890086c52d26724a2467d930b0fcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Content sources

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))

# Content fetchers sources
include content/fetchers/Makefile

# Content handlers
include content/handlers/Makefile