mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
8 lines
278 B
Plaintext
8 lines
278 B
Plaintext
SUFFIXES += .y .Y
|
|
|
|
ytoo = bison -v -d -y $< ; mv y.tab.c $(@D)/$(<F).c ; mv y.tab.h $(@D)/$(<F).h ; \
|
|
$(cc) $(cFLAGS) -c $(@D)/$(<F).c -o $@
|
|
|
|
Ytoo = bison -v -d -y $< ; mv y.tab.c $(@D)/$(<F).C ; mv y.tab.h $(@D)/$(<F).H ; \
|
|
$(CC) $(c++FLAGS) -c $(@D)/$(<F).C -o $@
|