INITIAL COMMIT

This commit is contained in:
2025-05-10 12:35:11 +01:00
commit e8b7e98bd2
7 changed files with 155 additions and 0 deletions

12
Makefile Normal file
View 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)