diff options
author | Maria Matejka <mq@ucw.cz> | 2019-02-13 12:25:30 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2019-02-20 22:30:55 +0100 |
commit | 132529ce8908661fd2baa0758c335006fb039ef0 (patch) | |
tree | 8ee02639b10b074b1827ae42b676d5a11fc1251e /filter/Makefile | |
parent | dd4d409551ae22d0a9bf4e3a6edc6fb9656911b9 (diff) |
Filter: merged filter compare functions into common M4 file
Diffstat (limited to 'filter/Makefile')
-rw-r--r-- | filter/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/filter/Makefile b/filter/Makefile index 4f515864..65602ea8 100644 --- a/filter/Makefile +++ b/filter/Makefile @@ -10,16 +10,13 @@ M4FLAGS_FILTERS=$(filter-out -s,$(M4FLAGS)) $(o)f-inst-interpret.c: $(s)interpret.m4 $(s)f-inst.c $(objdir)/.dir-stamp $(M4) $(M4FLAGS_FILTERS) -P $^ >$@ -$(o)f-inst-same.c: $(s)same.m4 $(s)f-inst.c $(objdir)/.dir-stamp - $(M4) $(M4FLAGS_FILTERS) -P $^ >$@ - $(o)inst-gen.h: $(s)decl.m4 $(s)f-inst.c $(objdir)/.dir-stamp $(M4) $(M4FLAGS_FILTERS) -DTARGET=H -P $^ >$@ $(o)inst-gen.c: $(s)decl.m4 $(s)f-inst.c $(objdir)/.dir-stamp $(M4) $(M4FLAGS_FILTERS) -DTARGET=C -P $^ >$@ -$(o)filter.o: $(o)f-inst-interpret.c $(o)f-inst-same.c $(o)inst-gen.h +$(o)filter.o: $(o)f-inst-interpret.c $(o)inst-gen.h tests_src := tree_test.c filter_test.c trie_test.c tests_targets := $(tests_targets) $(tests-target-files) |