summaryrefslogtreecommitdiff
path: root/pong/Makefile
blob: c2ed0ecfa07e9e52943ea1263a5ebf5c62804634 (plain)
1
2
3
4
5
6
SRC := ../util.c pong.c
OUT := ../bin/pong
LIBS := -lraylib -lGL -lm -lpthread -ldl -lrt -lX11

make all:
	gcc $(SRC) -o $(OUT) $(LIBS)