From 69f10d7732cd30bc0aeadda96d92d50cea6b67c5 Mon Sep 17 00:00:00 2001 From: Physick <96335032+DegustatorPonos@users.noreply.github.com> Date: Tue, 7 Jul 2026 14:27:23 +0500 Subject: project init --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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) -- cgit v1.3