summaryrefslogtreecommitdiff
path: root/content/Makefile
blob: 188d0f46e64bbc3e0189331ec50447d9adcca821 (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
28
# Content sources

S_CONTENT :=			\
	content.c		\
	content_factory.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 fetcher sources
include content/fetchers/Makefile

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

# Content handler sources
include content/handlers/Makefile

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