diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-08-10 12:04:25 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-08-10 12:04:25 +0200 |
commit | 5b1f877e6edfb3b541d444ae5b1ffd025dd9fbd6 (patch) | |
tree | 7b8890a2dba72f1c989295e0ceb431f0d2d08d2e /conf | |
parent | b92c8e30191dd757c76239076eda82d0065f2348 (diff) | |
download | bird-5b1f877e6edfb3b541d444ae5b1ffd025dd9fbd6.tar bird-5b1f877e6edfb3b541d444ae5b1ffd025dd9fbd6.zip |
Fixes typo in Makefile
Diffstat (limited to 'conf')
-rw-r--r-- | conf/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/Makefile b/conf/Makefile index 1b8bc71..b3d921d 100644 --- a/conf/Makefile +++ b/conf/Makefile @@ -11,7 +11,7 @@ BISON_DEBUG=-t #FLEX_DEBUG=-d endif -cf-parse.tab.c cf-parse-tab.h: cf-parse.y +cf-parse.tab.c cf-parse.tab.h: cf-parse.y $(BISON) -bcf-parse -dv -pcf_ $(BISON_DEBUG) cf-parse.y cf-parse.y: $(conf-fragments) $(conf-src)/gen_parser.m4 @@ -23,7 +23,7 @@ keywords.h: $(conf-fragments) $(conf-src)/gen_keywords.m4 commands.h: $(conf-fragments) $(conf-src)/gen_commands.m4 $(srcdir)/client/cmds.m4 $(M4) -P $(conf-src)/gen_commands.m4 $(srcdir)/client/cmds.m4 $(conf-fragments) | sort >commands.h -cf-lex.c: cf-lex.l cf-parse-tab.h +cf-lex.c: cf-lex.l cf-parse.tab.h $(FLEX) $(FLEX_DEBUG) -s -B -8 -ocf-lex.c -Pcf_ cf-lex.l depend: keywords.h commands.h cf-parse.tab.c cf-lex.c |