root / lib / filters / Makefile.am @ 4012ec30
History | View | Annotate | Download (498 Bytes)
| 1 | INCLUDES = $(GLIB_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/lib -I$(includedir) |
|---|---|
| 2 | |
| 3 | noinst_LTLIBRARIES = libfilters.la |
| 4 | |
| 5 | libfilters_la_SOURCES = \ |
| 6 | textcontent-filter.c \ |
| 7 | blacklist-filter.c \ |
| 8 | whitelist-filter.c \ |
| 9 | wordsep-filter.c \ |
| 10 | ngram-filter.c \ |
| 11 | bayes-filter.c |
| 12 | |
| 13 | libfiltersincludedir=$(includedir)/sylfilter |
| 14 | libfiltersinclude_HEADERS = \ |
| 15 | textcontent-filter.h \ |
| 16 | blacklist-filter.h \ |
| 17 | whitelist-filter.h \ |
| 18 | wordsep-filter.h \ |
| 19 | ngram-filter.h \ |
| 20 | bayes-filter.h |
| 21 | |
| 22 | libfilters_la_LIBADD = $(GLIB_LIBS) |