Changeset - r1164:fd63d4650504
[Not reviewed]
master
0 1 0
tron - 20 years ago 2005-01-25 15:38:35
tron@openttd.org
(svn r1666) Move some MorphOS compile flags to a place where they actually belong
1 file changed with 4 insertions and 5 deletions:
0 comments (0 inline, 0 general)
Makefile
Show inline comments
 
@@ -217,29 +217,24 @@ endif
 
ifdef DEDICATED
 
WITH_SDL:=
 
endif
 

	
 

	
 
##############################################################################
 
#
 
# Compiler configuration
 
#
 
CC=gcc
 
CXX=g++
 

	
 
ifdef MORPHOS
 
CC += -noixemul -pipe
 
CXX += -noixemul -pipe
 
endif
 

	
 
# Executable file extension
 
ifdef WIN32
 
EXE=.exe
 
else
 
EXE=
 
endif
 

	
 
# Set output executable names
 
TTD=openttd$(EXE)
 
ENDIAN_CHECK=endian_check$(EXE)
 
STRGEN=strgen/strgen$(EXE)
 
OSXAPP="OpenTTD.app"
 
@@ -360,24 +355,28 @@ ifdef BEOS
 
CDEFS += -DBEOS
 
LDFLAGS += -lmidi -lbe
 
ifdef WITH_NETWORK
 
	ifdef BEOS_NET_SERVER
 
		CDEFS += -DBEOS_NET_SERVER
 
	else
 
		# Zeta needs a few more libraries than R5
 
		LDFLAGS += -lbind -lsocket
 
	endif
 
endif
 
endif
 

	
 
ifdef MORPHOS
 
CFLAGS += -noixemul -pipe
 
endif
 

	
 
ifdef SUNOS
 
CDEFS += -DSUNOS
 
ifdef WITH_NETWORK
 
LDFLAGS += -lnsl -lsocket
 
endif
 
endif
 

	
 
# SDL config
 
ifdef WITH_SDL
 
CDEFS += -DWITH_SDL
 
CFLAGS += `$(SDL-CONFIG) --cflags`
 
ifdef STATIC
0 comments (0 inline, 0 general)