From 550b9c3bb2bdedc7ffcafd7f0f8cbad290122df3 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 17 Aug 2020 14:35:20 +0900 Subject: [PATCH] [qfcc] Fix silent make rules flex and bison --- tools/qfcc/source/Makemodule.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/qfcc/source/Makemodule.am b/tools/qfcc/source/Makemodule.am index d8db07b5c..dacfd3448 100644 --- a/tools/qfcc/source/Makemodule.am +++ b/tools/qfcc/source/Makemodule.am @@ -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