summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPhysick <96335032+DegustatorPonos@users.noreply.github.com>2026-07-07 14:27:23 +0500
committerPhysick <96335032+DegustatorPonos@users.noreply.github.com>2026-07-07 14:27:23 +0500
commit69f10d7732cd30bc0aeadda96d92d50cea6b67c5 (patch)
tree6e6541c018cb9dfa3734e489f9c25d0765975975 /Makefile
project init
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..837cc4b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,6 @@
+SRC_FILES := src/main.c
+CC_FLAGS := -Wall -Wextra -lraylib
+NAME := game.a
+
+all:
+ cc $(CC_FLAGS) $(SRC_FILES) -o $(NAME)