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