From 3e48a47b9c47721e041b5b54a55ce5cb74d27ddb Mon Sep 17 00:00:00 2001 From: miguel Date: Tue, 12 Sep 2017 21:12:41 +0200 Subject: first commit of boban on the run --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a1445b2 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +CPPFLAGS = $(shell sdl2-config --cflags --libs) + +run: game + ./game + +game: World.o main.o + $(CXX) -o $@ $(CPPFLAGS) $^ + +clean: + rm -f game + rm -f *.o -- cgit v1.2.3