netsurf/content/Makefile
Vincent Sanders a8596a80ae move free text search general interface to content.
needs additional cleanup to call content through handler table to
  perform searches.
2020-05-10 23:22:29 +01:00

28 lines
479 B
Makefile

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