diff options
author | Maria Matejka <mq@ucw.cz> | 2019-02-12 14:16:28 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2019-02-20 22:30:54 +0100 |
commit | de12cd18fb213ee9cc872fec77b789f34cfd7cc4 (patch) | |
tree | 99ef5676a83ffc0ef6b50a787ab408cc04d3086a /filter/Makefile | |
parent | b256f241459c51224a4bf428f4bc5dfa44882920 (diff) |
Filter: Merged filter line item dumpers into common generated source
Diffstat (limited to 'filter/Makefile')
-rw-r--r-- | filter/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/filter/Makefile b/filter/Makefile index df7ff3f9..e3b7ec26 100644 --- a/filter/Makefile +++ b/filter/Makefile @@ -22,11 +22,10 @@ $(o)inst-gen.h: $(s)decl.m4 $(s)f-inst.c $(objdir)/.dir-stamp $(o)inst-gen.c: $(s)decl.m4 $(s)f-inst.c $(objdir)/.dir-stamp $(M4) $(M4FLAGS_FILTERS) -DTARGET=C -P $^ >$@ -$(o)f-inst-dump.c: $(s)dump.m4 $(s)f-inst.c $(objdir)/.dir-stamp - $(M4) $(M4FLAGS_FILTERS) -P $^ >$@ - -$(o)filter.o: $(o)f-inst-interpret.c $(o)f-inst-postfixify.c $(o)f-inst-same.c $(o)f-inst-dump.c $(o)inst-gen.h +$(o)filter.o: $(o)f-inst-interpret.c $(o)f-inst-postfixify.c $(o)f-inst-same.c $(o)inst-gen.h tests_src := tree_test.c filter_test.c trie_test.c tests_targets := $(tests_targets) $(tests-target-files) tests_objs := $(tests_objs) $(src-o-files) + +$(call clean,inst-gen.h inst-gen.c) |