You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
479 B
28 lines
479 B
# 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))
|