mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 02:11:19 +00:00
[qfcc] Fix silent make rules flex and bison
This commit is contained in:
parent
62c20aa4ab
commit
550b9c3bb2
1 changed files with 4 additions and 4 deletions
|
@ -80,13 +80,13 @@ BUILT_SOURCES += \
|
|||
tools/qfcc/source/qp-lex.c
|
||||
|
||||
tools/qfcc/source/qc-parse.c: tools/qfcc/source/qc-parse.y
|
||||
$(YACC) $(YFLAGS) -Dapi.prefix={qc_yy} $< -o $@
|
||||
$(AM_V_YACC)$(YACCCOMPILE) -Dapi.prefix={qc_yy} $< -o $@
|
||||
tools/qfcc/source/qc-lex.c: tools/qfcc/source/qc-lex.l tools/qfcc/source/qc-parse.h
|
||||
$(LEX) $(LFLAGS) $(AM_LFLAGS) -Pqc_yy -o$@ $<
|
||||
$(AM_V_LEX)$(LEXCOMPILE) -Pqc_yy -o$@ $<
|
||||
tools/qfcc/source/qp-parse.c: tools/qfcc/source/qp-parse.y
|
||||
$(YACC) $(YFLAGS) -Dapi.prefix={qp_yy} $< -o $@
|
||||
$(AM_V_YACC)$(YACCCOMPILE) -Dapi.prefix={qp_yy} $< -o $@
|
||||
tools/qfcc/source/qp-lex.c: tools/qfcc/source/qp-lex.l tools/qfcc/source/qp-parse.h
|
||||
$(LEX) $(LFLAGS) $(AM_LFLAGS) -Pqp_yy -o$@ $<
|
||||
$(AM_V_LEX)$(LEXCOMPILE) -Pqp_yy -o$@ $<
|
||||
|
||||
EXTRA_DIST += \
|
||||
tools/qfcc/source/qfpreqcc
|
||||
|
|
Loading…
Reference in a new issue