mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
wmake/rules/General/yacc: Added QUIET_MESSAGE
This commit is contained in:
@ -1,11 +1,13 @@
|
||||
SUFFIXES += .y .Y
|
||||
|
||||
ytoo = $(WM_SCHEDULER) yacc -v -d $< $(AND) \
|
||||
ytoo = $E $(call QUIET_MESSAGE, " yacc: $(<F)") \
|
||||
$(WM_SCHEDULER) yacc -v -d $< $(AND) \
|
||||
mv y.tab.c $(@D)/$(<F).c $(AND) \
|
||||
mv y.tab.h $(@D)/parser.h $(AND) \
|
||||
$(CC) $(c++FLAGS) -c $(@D)/$(<F).c -o $@
|
||||
|
||||
Ytoo = $(WM_SCHEDULER) yacc -v -d $< $(AND) \
|
||||
Ytoo = $E $(call QUIET_MESSAGE, " yacc: $(<F)") \
|
||||
$(WM_SCHEDULER) yacc -v -d $< $(AND) \
|
||||
mv y.tab.c $(@D)/$(<F).C $(AND) \
|
||||
mv y.tab.h $(@D)/parser.H $(AND) \
|
||||
$(CC) $(c++FLAGS) -c $(@D)/$(<F).C -o $@
|
||||
|
||||
Reference in New Issue
Block a user