mirror of
https://github.com/Karmaz95/Snake_Apple.git
synced 2026-06-12 18:17:48 +02:00
13 lines
206 B
Makefile
13 lines
206 B
Makefile
CC=clang
|
|
FRAMEWORKS=-framework Foundation
|
|
|
|
all: server client
|
|
|
|
server: server.m
|
|
$(CC) $(FRAMEWORKS) server.m -o server
|
|
|
|
client: client.m
|
|
$(CC) $(FRAMEWORKS) client.m -o client
|
|
|
|
clean:
|
|
rm -f server client
|