From e1d75dfdf0727776adf0b3d44995ccf0e03487b3 Mon Sep 17 00:00:00 2001 From: tom Date: Thu, 30 Apr 2015 22:20:53 -0500 Subject: first commit --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9f346de --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +OBJS = src/main.cpp src/window.cpp src/entity.cpp src/event.cpp + +CC = g++ + +COMPILER_FLAGS = -w + +LINKER_FLAGS = -lSDL2 -lSDL2_image + +all : $(OBJS) + $(CC) $(OBJS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o nature -- cgit v1.2.3