summaryrefslogtreecommitdiff
path: root/content/Makefile
blob: abc5a2463cd4dfeadfb46899f5e388210568df42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Content sources

S_CONTENT :=			\
	content.c		\
	content_factory.c	\
	dirlist.c		\
	fetch.c			\
	hlcache.c		\
	llcache.c		\
	mimesniff.c		\
	textsearch.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


# Content fetchers sources
include content/fetchers/Makefile

# Content handlers
include content/handlers/Makefile

S_CONTENT := $(addprefix content/,$(S_CONTENT))