From 5ab7a29c911d9258fb49ece2557b44176d7a2a68 Mon Sep 17 00:00:00 2001 From: AynRandDuran Date: Fri, 16 Jul 2021 21:58:35 -0400 Subject: [PATCH] Move to a real makefile like a man --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1c7eab2 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +LIBS = -lraylib -lgdi32 -lwinmm + +game: game.cpp + $(CXX) $@.cpp $(LIBS) -o $@ -- 2.49.0