INITIAL COMMIT
This commit is contained in:
12
Makefile
Normal file
12
Makefile
Normal file
@@ -0,0 +1,12 @@
|
||||
CC = clang
|
||||
CFLAGS = -g -Iraylib/include -Iwapp/src
|
||||
LDFLAGS = '-Wl,-rpath,$$ORIGIN/raylib/lib' -Lraylib/lib -lraylib
|
||||
OUT = main
|
||||
|
||||
.PHONY: all game
|
||||
|
||||
all: game
|
||||
|
||||
game:
|
||||
cd wapp && python3 -m codegen
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) main.c wapp/src/wapp.c -o $(OUT)
|
||||
Reference in New Issue
Block a user