summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-25 15:38:35 +0000
committertron <tron@openttd.org>2005-01-25 15:38:35 +0000
commit03ba24dd6548e4d96e6090f6d18b7dbfdbb96bd8 (patch)
treecb5f3f7b4ec25650e8c201751ecf132e49daa22d /Makefile
parent75045328ec15f12b1cf5d72d5b332a566e4cdffa (diff)
downloadopenttd-03ba24dd6548e4d96e6090f6d18b7dbfdbb96bd8.tar.xz
(svn r1666) Move some MorphOS compile flags to a place where they actually belong
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 4181d3524..56a8993d5 100644
--- a/Makefile
+++ b/Makefile
@@ -226,11 +226,6 @@ endif
CC=gcc
CXX=g++
-ifdef MORPHOS
-CC += -noixemul -pipe
-CXX += -noixemul -pipe
-endif
-
# Executable file extension
ifdef WIN32
EXE=.exe
@@ -369,6 +364,10 @@ ifdef WITH_NETWORK
endif
endif
+ifdef MORPHOS
+CFLAGS += -noixemul -pipe
+endif
+
ifdef SUNOS
CDEFS += -DSUNOS
ifdef WITH_NETWORK