diff options
| author | pack <pack@packgekko.xyz> | 2026-08-05 21:50:57 +0000 |
|---|---|---|
| committer | pack <pack@packgekko.xyz> | 2026-08-05 21:50:57 +0000 |
| commit | f1eff54aa5821ba2a09f29e684280f79e36a3104 (patch) | |
| tree | 5bf7cc41ae0bcfd61a6d88ba47918359ed75f528 /Makefile | |
| parent | 73cb285b7086b3f1e794fbbd69f2735c49510b68 (diff) | |
| download | tiny-f1eff54aa5821ba2a09f29e684280f79e36a3104.tar.gz | |
add README.md, .gitignore, Makefile, and starting code in tiny.c
Diffstat (limited to '')
| -rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d5793b8 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +# tiny.git tiny - simple tiny rpg game ⚘ +# see LICENSE file for copyright and license details. + +CC = cc +CFLAGS = -O2 -Wall -Wextra +LDFLAGS = -lraylib -lGL -lm -lpthread -ldl -lrt + +SRC = tiny.c +OUT = tiny + +$(OUT): $(SRC) + $(CC) $(CFLAGS) -o $(OUT) $(SRC) $(LDFLAGS) + +clean: + rm -f $(OUT) + +.PHONY: clean |