dungeon_crawler
diff prototype/Makefile @ 14:67ae9fcb802c
loading normal map
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 19 Aug 2012 06:30:18 +0300 |
parents | e95462632f9a |
children | d98240a13793 |
line diff
1.1 --- a/prototype/Makefile Sun Aug 19 05:50:58 2012 +0300 1.2 +++ b/prototype/Makefile Sun Aug 19 06:30:18 2012 +0300 1.3 @@ -6,7 +6,7 @@ 1.4 1.5 CFLAGS = -pedantic -Wall -g -Ivmath 1.6 CXXFLAGS = $(CFLAGS) -std=c++11 1.7 -LDFLAGS = $(libgl) -lm -lassimp -limago 1.8 +LDFLAGS = $(libgl) -lm -lassimpD -limago 1.9 1.10 ifeq ($(shell uname -s), Darwin) 1.11 libgl = -framework OpenGL -framework GLUT -lglew 1.12 @@ -14,7 +14,7 @@ 1.13 libgl = -lGL -lGLU -lglut -lGLEW 1.14 endif 1.15 1.16 -$(bin): $(obj) 1.17 +$(bin): $(obj) Makefile 1.18 $(CXX) -o $@ $(obj) $(LDFLAGS) 1.19 1.20 -include $(dep)