|
From: <sik...@us...> - 2006-05-17 03:03:44
|
Revision: 12 Author: sik0fewl Date: 2006-05-16 20:03:39 -0700 (Tue, 16 May 2006) ViewCVS: http://svn.sourceforge.net/perceptioncrash/?rev=12&view=rev Log Message: ----------- Fixed build script Modified Paths: -------------- trunk/perceptioncrash/Jamrules Modified: trunk/perceptioncrash/Jamrules =================================================================== --- trunk/perceptioncrash/Jamrules 2006-05-17 01:53:33 UTC (rev 11) +++ trunk/perceptioncrash/Jamrules 2006-05-17 03:03:39 UTC (rev 12) @@ -19,12 +19,12 @@ # do some compiler settings for the different compilation modes switch $(VARIANT) { case optimize : - CFLAGS += -O3 -g -Wall ; - CXXFLAGS += -O3 -g -Wall ; + CFLAGS += -O3 -g -Wall -DNDEBUG ; + CXXFLAGS += -O3 -g -Wall -DNDEUB ; LIBS += -g ; case debug : - CFLAGS += -Wall -W -O0 -g3 -DDEBUG ; - CXXFLAGS += -Wall -W -O0 -g3 -DDEBUG ; + CFLAGS += -Wall -O0 -g3 ; + CXXFLAGS += -Wall -O0 -g3 ; LIBS += -g3 ; case profile : CFLAGS += -O3 -g3 -pg ; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |