mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
17 lines
380 B
Makefile
17 lines
380 B
Makefile
.PHONY: all
|
|
all: hellocobol hellocobol_variables hellocobol_if
|
|
|
|
hellocobol: hellocobol.cob
|
|
cobc -x -g -o hellocobol hellocobol.cob
|
|
|
|
hellocobol_variables: hellocobol_variables.cob
|
|
cobc -x -g -o hellocobol_variables hellocobol_variables.cob
|
|
|
|
hellocobol_if: hellocobol_if.cob
|
|
cobc -x -g -o hellocobol_if hellocobol_if.cob
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f hellocobol hellocobol.o *.i
|
|
|