From 8085af503f23991838cd120ea7ea7b44914ac589 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Fri, 6 May 2016 23:05:38 +1000 Subject: [PATCH] Tweaked makefile --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 6242a6e..0838e2d 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,5 @@ #config -INCLUDES+=. +INCLUDES+=. .. LIBS+= CXXFLAGS+=-std=c++11 $(addprefix -I,$(INCLUDES)) @@ -10,7 +10,7 @@ CXXSRC=$(wildcard *.cpp) OBJDIR=obj OBJ+=$(addprefix $(OBJDIR)/,$(CXXSRC:.cpp=.o)) -OUTDIR=. +OUTDIR=.. OUT=libturtlegui.a #targets