diff options
author | mRnea <akannemre@gmail.com> | 2024-12-21 16:07:48 +0300 |
---|---|---|
committer | mRnea <akannemre@gmail.com> | 2024-12-21 16:07:48 +0300 |
commit | 91a0bf8b9bfabf85e7ce110623a3af1ca4559e72 (patch) | |
tree | b0dcf4862ba87f057cc951c4aafe243fe62341d3 /pong/Makefile | |
parent | fe4c82aaaabdd82c9220c2c538d306a463576a1d (diff) |
started pong game
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) |