From f1eff54aa5821ba2a09f29e684280f79e36a3104 Mon Sep 17 00:00:00 2001 From: pack Date: Wed, 5 Aug 2026 21:50:57 +0000 Subject: add README.md, .gitignore, Makefile, and starting code in tiny.c --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3