Start adding tests for the filters.
[apps/pfixtools.git] / postlicyd / Makefile
index 7331063..ac0e95a 100644 (file)
 include ../mk/tc.mk
 
 PROGRAMS  = postlicyd
-GENERATED = policy_tokens.h policy_tokens.c filter_tokens.h filter_tokens.c
-TESTS     = test-rbl
+GENERATED = policy_tokens.h policy_tokens.c \
+                                               filter_tokens.h filter_tokens.c \
+                                               hook_tokens.h hook_tokens.c \
+                                               param_tokens.h param_tokens.c
+TESTS     = test-rbl tst-filters
 
-postlicyd_SOURCES = greylist.c rbl.c main-postlicyd.c $(GENERATED) ../common/lib.a
+FILTERS                = rbl.c greylist.c strlist.c match.c
+
+postlicyd_SOURCES = main-postlicyd.c ../common/lib.a filter.c config.c query.c $(FILTERS) $(GENERATED)
 postlicyd_LIBADD  = $(TC_LIBS)
 
 tst-rbl_SOURCES   = tst-rbl.c
+tst-filters_SOURCES = tst-filters.c ../common/lib.a config.c filter.c query.c $(FILTERS) $(GENERATED)
+tst-filters_LIBADD  = $(TC_LIBS)
+
+hook_tokens.h hook_tokens.c: $(FILTERS)
+param_tokens.c param_tokens.h: $(FILTERS) config.c
 
 include ../mk/common.mk