diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-08-10 14:13:28 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-08-10 14:13:28 +0200 |
commit | ea9097eaad7dfccd5a88480d748781d947b25cc8 (patch) | |
tree | 04192319ecff76af35f0970a074e93a4c11a3e12 | |
parent | f2cfc509960741bd587cf92f7d154d06fbb2c9a4 (diff) | |
download | bird-ea9097eaad7dfccd5a88480d748781d947b25cc8.tar bird-ea9097eaad7dfccd5a88480d748781d947b25cc8.zip |
Fixes parallel runs of Bison.
Previous version of Makefile executed Bison two times (in parallel),
because of two specified targets. I am not sure wheter this is the best
fix.
Previon
-rw-r--r-- | conf/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/conf/Makefile b/conf/Makefile index b3d921d..96975eb 100644 --- a/conf/Makefile +++ b/conf/Makefile @@ -11,7 +11,9 @@ BISON_DEBUG=-t #FLEX_DEBUG=-d endif -cf-parse.tab.c cf-parse.tab.h: cf-parse.y +cf-parse.tab.h: cf-parse.tab.c + +cf-parse.tab.c: cf-parse.y $(BISON) -bcf-parse -dv -pcf_ $(BISON_DEBUG) cf-parse.y cf-parse.y: $(conf-fragments) $(conf-src)/gen_parser.m4 |