diff options
author | Maria Matejka <mq@ucw.cz> | 2019-02-11 15:27:47 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2019-02-20 22:30:54 +0100 |
commit | 75206f266f8534367b88401be463953b7d5dc770 (patch) | |
tree | 73457aa0cccbf0431728472ef1816de09ec74b78 /conf/Makefile | |
parent | 4f082dfa892e95f86ca8137410992a248110b6ef (diff) |
Conf: Fixed makefiles
Diffstat (limited to 'conf/Makefile')
-rw-r--r-- | conf/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/conf/Makefile b/conf/Makefile index 39628bff..be823d40 100644 --- a/conf/Makefile +++ b/conf/Makefile @@ -10,12 +10,12 @@ BISON_DEBUG=-t #FLEX_DEBUG=-d endif -$(conf-y-targets): $(s)confbase.Y $(s)flowspec.Y - $(M4) $(M4FLAGS) -P $| $^ >$@ +$(o)cf-parse.y: $(s)gen_parser.m4 +$(o)keywords.h: $(s)gen_keywords.m4 +$(o)commands.h: $(s)gen_commands.m4 -$(o)cf-parse.y: | $(s)gen_parser.m4 -$(o)keywords.h: | $(s)gen_keywords.m4 -$(o)commands.h: | $(s)gen_commands.m4 $(srcdir)/client/cmds.m4 +$(conf-y-targets): $(s)confbase.Y $(s)flowspec.Y + $(M4) $(M4FLAGS) -P $(if $(word 2,$(filter %.m4,$^)),$(error "Too many M4 scripts for one target"),$(filter %.m4,$^)) $(filter %.Y,$^) >$@ $(o)cf-parse.tab.h: $(o)cf-parse.tab.c |