Explicitly specify output file names for bison.
This commit is contained in:
parent
24df62e32b
commit
e51779df68
|
@ -28,10 +28,10 @@ EXTRA_OBJS = sql.tab.o cond.tab.o
|
|||
@MAKE_DLL_RULES@
|
||||
|
||||
sql.tab.c sql.tab.h: sql.y
|
||||
$(BISON) -p SQL_ -d $(SRCDIR)/sql.y
|
||||
$(BISON) -p SQL_ -d $(SRCDIR)/sql.y -o sql.tab.c
|
||||
|
||||
cond.tab.c cond.tab.h: cond.y
|
||||
$(BISON) -p COND_ -d $(SRCDIR)/cond.y
|
||||
$(BISON) -p COND_ -d $(SRCDIR)/cond.y -o cond.tab.c
|
||||
|
||||
# hack to allow parallel make
|
||||
sql.tab.h: sql.tab.c
|
||||
|
|
Loading…
Reference in New Issue