mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
18 lines
749 B
Plaintext
18 lines
749 B
Plaintext
SUFFIXES += .ly .lyy .lyy-m4
|
|
|
|
lytoo = $E $(call QUIET_MESSAGE,lemon,$(<F)) \
|
|
$(WM_SCHEDULER) $(WM_SCRIPTS)/wrap-lemon -d$(@D) $< $(AND) \
|
|
$(cc) $(cFLAGS) -c $(@D)/$(*F).c -o $@
|
|
|
|
lyytoo = $E $(call QUIET_MESSAGE,lemon,$(<F)) \
|
|
$(WM_SCHEDULER) $(WM_SCRIPTS)/wrap-lemon -d$(@D) -ecc $< $(AND) \
|
|
$(CC) $(c++FLAGS) -c $(@D)/$(*F).cc -o $@
|
|
|
|
# Retain intermediate files (-with-debug) to help when something goes wrong,
|
|
# and to verify that the generated grammar looks correct.
|
|
lyy-m4too = $E $(call QUIET_MESSAGE,lemon-m4,$(<F)) \
|
|
$(WM_SCHEDULER) $(WM_SCRIPTS)/wrap-lemon -with-debug -d$(@D) -ecc $< $(AND) \
|
|
$(CC) $(c++FLAGS) -c $(@D)/$(*F).cc -o $@
|
|
|
|
#------------------------------------------------------------------------------
|