author | ecalot
<ecalot> 2005-02-21 06:25:11 UTC |
committer | ecalot
<ecalot> 2005-02-21 06:25:11 UTC |
parent | af98c99d3b2781f8ec2c27424a78ba9072c2e73d |
FP/src/Makefile | +6 | -4 |
diff --git a/FP/src/Makefile b/FP/src/Makefile index 748447c..7e927cd 100644 --- a/FP/src/Makefile +++ b/FP/src/Makefile @@ -31,6 +31,8 @@ endif #Libraries: include path and linked libs INCLUDE = -Iinclude/ LIBS = $(shell sdl-config --libs --cflags) +#but if you have problems porting to BSD use: +#LIBS = -L/usr/local/lib -lSDL-1.1 -pthread #Defines DEFINES = -DOS=\"$(OS)\" $(LINUX) @@ -43,11 +45,11 @@ TYPE = Debug # LINKERRELEASE may be: # -s for release ifeq ($(TYPE),Debug) - RELEASE = -g -Wall -ansi -pedantic - LINKERRELEASE = + RELEASE = -g -Wall -ansi -pedantic + LINKERRELEASE = else - RELEASE = -O2 - LINKERRELEASE = -s + RELEASE = -O2 + LINKERRELEASE = -s endif #Binary code files