bloboland

diff Makefile @ 2:1757973feaed

added stereoscopic rendering for no apparent reason
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 16 Dec 2012 00:37:35 +0200
parents cfe68befb7cc
children a39c301cdcce
line diff
     1.1 --- a/Makefile	Sat Dec 15 23:43:03 2012 +0200
     1.2 +++ b/Makefile	Sun Dec 16 00:37:35 2012 +0200
     1.3 @@ -3,7 +3,10 @@
     1.4  dep = $(obj:.o=.d)
     1.5  bin = blobo
     1.6  
     1.7 -CXXFLAGS = -ansi -pedantic -Wall -g
     1.8 +opt = -O3 -ffast-math
     1.9 +dbg = -g
    1.10 +
    1.11 +CXXFLAGS = -ansi -pedantic -Wall $(opt) $(dbg)
    1.12  LDFLAGS = $(libgl) -lvmath -limago
    1.13  
    1.14  ifeq ($(shell uname -s), Darwin)