summaryrefslogtreecommitdiff
path: root/content/Makefile
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2020-05-10 23:22:29 +0100
committerVincent Sanders <vince@kyllikki.org>2020-05-10 23:22:29 +0100
commita8596a80aeb70acb05aba29f654df24210f50c19 (patch)
tree6bf35682734c56398567a346467340504b7f1b83 /content/Makefile
parente72ca36863f4b05e5e641e77472f0f7fef97d906 (diff)
downloadnetsurf-a8596a80aeb70acb05aba29f654df24210f50c19.tar.gz
netsurf-a8596a80aeb70acb05aba29f654df24210f50c19.tar.bz2
move free text search general interface to content.
needs additional cleanup to call content through handler table to perform searches.
Diffstat (limited to 'content/Makefile')
-rw-r--r--content/Makefile13
1 files changed, 11 insertions, 2 deletions
diff --git a/content/Makefile b/content/Makefile
index b4353ba95..abc5a2463 100644
--- a/content/Makefile
+++ b/content/Makefile
@@ -1,7 +1,16 @@
# 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
+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)