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:
laurentgom 2009-11-19 23:31:33 +00:00
parent 548991d665
commit 877df21756
7 changed files with 63 additions and 115 deletions

View file

@ -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