conworlds

diff Makefile @ 13:283cdfa7dda2

added a crapload of code from goat3dgfx
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 24 Aug 2014 09:41:24 +0300
parents e3f0ca1d008a
children c814f77d177e
line diff
     1.1 --- a/Makefile	Sat Aug 23 12:03:29 2014 +0300
     1.2 +++ b/Makefile	Sun Aug 24 09:41:24 2014 +0300
     1.3 @@ -2,7 +2,7 @@
     1.4  ccsrc = $(wildcard src/*.cc)
     1.5  obj = $(csrc:.c=.o) $(ccsrc:.cc=.o)
     1.6  dep = $(obj:.o=.d)
     1.7 -bin = vrchess
     1.8 +bin = conworlds
     1.9  
    1.10  # comment out to disable LibOVR (oculus sdk)
    1.11  #ovr_cflags = -DUSE_LIBOVR
    1.12 @@ -13,7 +13,7 @@
    1.13  
    1.14  CFLAGS = -pedantic -Wall -g $(ovr_cflags)
    1.15  CXXFLAGS = -std=c++11 $(CFLAGS)
    1.16 -LDFLAGS = $(libgl_$(sys)) -lm -lvmath -limago $(ovr_libs)
    1.17 +LDFLAGS = $(libgl_$(sys)) -lm -lvmath -limago -lanim $(ovr_libs)
    1.18  
    1.19  libgl_unix = -lGL -lGLU -lglut -lGLEW
    1.20  libgl_mac = -framework OpenGL -framework GLUT -lGLEW