mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- include ragel and lemon - rename pre-generated files to ".cc" so that they are more recognizable as being different from regular file content.
10 lines
327 B
Plaintext
10 lines
327 B
Plaintext
SUFFIXES += .ly .lyy
|
|
|
|
lytoo = $E $(call QUIET_MESSAGE,lemon,$(<F)) \
|
|
$(WM_SCHEDULER) $(WM_SCRIPTS)/wrap-lemon -q $< $(AND) \
|
|
$(cc) $(cFLAGS) -c $(@D)/$(<F).c -o $@
|
|
|
|
lyytoo = $E $(call QUIET_MESSAGE,lemon,$(<F)) \
|
|
$(WM_SCHEDULER) $(WM_SCRIPTS)/wrap-lemon -q $< $(AND) \
|
|
$(CC) $(c++FLAGS) -c $(@D)/$(<F).cc -o $@
|