diff options
Diffstat (limited to 'pong/Makefile')
-rw-r--r-- | pong/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pong/Makefile b/pong/Makefile new file mode 100644 index 0000000..c2ed0ec --- /dev/null +++ b/pong/Makefile @@ -0,0 +1,6 @@ +SRC := ../util.c pong.c +OUT := ../bin/pong +LIBS := -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 + +make all: + gcc $(SRC) -o $(OUT) $(LIBS) |