aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-10-27 08:41:51 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-10-27 08:41:51 -0400
commit865f6d8b172caec9c450cec72c4460f2c040c13a (patch)
tree1586fb1149b045af163870e3550a29a3f1661674 /Makefile
parent26391278f21c173971bfc1f53f324ae29737dfeb (diff)
parent69ce4512cae1b286a9807be03dfc295b6a4570f6 (diff)
Added proof of concept tree layer
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index a362803..8ac3b3d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,6 @@
-LIBS = -lGL
-WIN_LIBS = -lopengl32 -lmingw32
+LIBS = -lGL -lGLEW -lSDL2main -lSDL2 -lfreetype -lSDL2_image -lSDL2_mixer
-FLAGS = -std=c++11 -Iinclude -Iinclude/freetype2 -lGL -lGLEW -lSDL2 -lfreetype -lSDL2_image -lSDL2_mixer
+FLAGS = -m32 -std=c++11 -Iinclude -Iinclude/freetype2
all:
@rm -f out/*.o
@@ -9,9 +8,6 @@ all:
@echo " CXX main.cpp"
@g++ $(FLAGS) -o main main.cpp out/*.o $(LIBS)
-win32:
- @g++ $(FLAGS) -o main main.cpp src/*.cpp $(WIN_LIBS)
-
clean:
@echo " RM main"
@-rm -f main