Removed STATIC and DEBUGBUILD options from makefiles, debug symbols are now generated by default and installed to a separate folder
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1279 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
parent
548991d665
commit
877df21756
7 changed files with 63 additions and 115 deletions
|
@ -1,12 +1,5 @@
|
|||
export DEBUGBUILD = no
|
||||
ifeq ($(DEBUGBUILD), yes)
|
||||
DEBUGFLAGS = -g -DDEBUG
|
||||
else
|
||||
DEBUGFLAGS = -O2 -DNDEBUG
|
||||
endif
|
||||
|
||||
export CC = g++
|
||||
export CFLAGS = -W -Wall -ansi -I../../include $(DEBUGFLAGS)
|
||||
export CFLAGS = -W -Wall -ansi -g -O2 -DNDEBUG -I../../include
|
||||
export LDFLAGS =
|
||||
export EXECPATH = ../bin
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue