From 8d9ad3eb74bc0dfc647abf03b7b99ed16f2a9115 Mon Sep 17 00:00:00 2001 From: tom Date: Mon, 2 May 2016 21:24:02 -0500 Subject: implementing better modularity, came into bad bug. All creatures seem to have same near vector. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a47226d..4fc413f 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ OBJS = src/*cpp DEPS = inc/ -CC = g++ +CC = g++ COMPILER_FLAGS = -w -I$(DEPS) -LINKER_FLAGS = -lSDL2 -lSDL2_image -std=c++11 +LINKER_FLAGS = -g -lm -lSDL2 -lSDL2_image -std=c++11 all : $(OBJS) $(CC) $(OBJS) $(COMPILER_FLAGS) $(LINKER_FLAGS) -o natures -- cgit v1.2.3