mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
14 lines
363 B
Makefile
14 lines
363 B
Makefile
.PHONY: all
|
|
all: hellotictactoe hellodays
|
|
|
|
hellotictactoe: hellotictactoe.m
|
|
clang hellotictactoe.m `gnustep-config --objc-flags` -O0 -std=c99 -lobjc -lgnustep-base -o hellotictactoe
|
|
|
|
hellodays: hellodays.m
|
|
clang hellodays.m `gnustep-config --objc-flags` -O0 -std=c99 -lobjc -lgnustep-base -o hellodays
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f hellotictactoe hellodays *.d
|
|
|