summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authororangerot <orangerot@orangerot.dev>2025-10-13 21:07:46 +0200
committerorangerot <orangerot@orangerot.dev>2025-10-13 21:07:46 +0200
commit37a07856a7b6592cbe63d1caf3a610f7867e0bf9 (patch)
tree3c271c100c8c4a236a9e3d963c200fd43e1745be /Makefile
parentd0aadff9a41b15aed3a8b0c8e90130805f16c609 (diff)
feat: render texture using glfw
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..77f997b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,6 @@
+CFLAGS := -Wall -Wextra
+LDFLAGS = -lglfw -lm -lGL -I./glad/include
+
+domino-dungeon: main.c glad/src/glad.c
+ $(CC) ${CFLAGS} ${LDFLAGS} -o $@ $^
+