aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-10-15 09:07:05 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-10-15 09:07:05 -0400
commitef74ae83db1d3049e4e890df77d25ac6e1f7719f (patch)
tree15b01f3ac4f4f2ef06e6fe463ce5e053b26a02e2 /Makefile
parent5adabb82443b9b10b25cdd8b4db3cfe890e36fa1 (diff)
Added glew and shader loading
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 387f5f3..da4e36a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
LIBS = -lGL
WIN_LIBS = -lopengl32 -lmingw32
-FLAGS = -m32 -std=c++11 -Iinclude -Iinclude/freetype2 -lSDL2main -lSDL2 -lfreetype -lSDL2_image -lSDL2_mixer
+FLAGS = -m32 -std=c++11 -Iinclude -Iinclude/freetype2 -lGL -lGLEW -lSDL2main -lSDL2 -lfreetype -lSDL2_image -lSDL2_mixer
-all:
- @rm -f out/*.o
+all:
+ @rm -f out/*.o
@cd src; $(MAKE) $(MFLAGS)
@echo " CXX main.cpp"
@g++ $(FLAGS) -o main main.cpp out/*.o $(LIBS)