summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2005-05-14 22:42:33 +0000
committerDarkvater <darkvater@openttd.org>2005-05-14 22:42:33 +0000
commit4c0c553a8f5c2c2ce17d41ff4485f408f8ceaae5 (patch)
tree59a6d14cf6229925dfeec03df0b7112f1827c2da /Makefile
parent220e5be863b020dde8b40216d49e83f9de400ad7 (diff)
downloadopenttd-4c0c553a8f5c2c2ce17d41ff4485f408f8ceaae5.tar.xz
(svn r2314) - Feature: [ 1187490 ] Patches for building on IRIX (jgilje)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 453dc13d8..519392524 100644
--- a/Makefile
+++ b/Makefile
@@ -332,11 +332,13 @@ ifndef DEBUG
ifndef PROFILE
# Release mode
ifndef MORPHOS
+ifndef IRIX
# automatical strip breaks under morphos
BASECFLAGS += -s
LDFLAGS += -s
endif
endif
+endif
ifdef OSX
# these compilerflags makes the app run as fast as possible without making the app unstable. It works on G3 or newer
@@ -349,10 +351,12 @@ else
BASECFLAGS += -O2
endif
ifndef PROFILE
+ifndef IRIX
BASECFLAGS += -fomit-frame-pointer
endif
endif
endif
+endif
ifdef STATIC
ifndef OSX # OSX can't build static if -static flag is used