mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-10-31 15:20:10 +00:00
db3d226c52
FAT binaries now need to rely on COCOA drivers. SDL didn't work properly anyway
111 lines
2.6 KiB
Makefile
111 lines
2.6 KiB
Makefile
# $Id: Makefile 3214 2005-11-17 19:43:37Z bjarni $
|
|
# This makefile is not a standalone makefile, but is called from the general one
|
|
# it contains code specific to MacOS X
|
|
|
|
ifdef RELEASE
|
|
ifndef STATIC
|
|
# all OSX releases needs to be static
|
|
# end users don't tend to have the dynamic libs installed
|
|
$(warning Compiling a dynamic release. It should be static unless you really know what you are doing!!!)
|
|
endif
|
|
endif
|
|
|
|
ifdef RELEASE
|
|
ifndef FAT_BINARY
|
|
$(warning Compiling a release build, that is not a universal binary)
|
|
endif
|
|
endif
|
|
|
|
ifdef FAT_BINARY
|
|
ifndef STATIC
|
|
$(warning Compiling a universal binary, that is not static. Adding static flag)
|
|
STATIC:=1
|
|
endif
|
|
endif
|
|
|
|
ifdef RELEASE
|
|
ifdef DEBUG
|
|
$(warning Compiling a release build, that is a debug build)
|
|
endif
|
|
endif
|
|
|
|
# setup flags if none are defined
|
|
ifndef CFLAGS_PPC
|
|
CFLAGS_PPC:= -isysroot /Developer/SDKs/MacOSX10.2.8.sdk
|
|
endif
|
|
ifndef LDFLAGS_PPC
|
|
LDFLAGS_PPC:= -Wl,-syslibroot,/Developer/SDKs/MacOSX10.2.8.sdk
|
|
endif
|
|
ifndef PPC_CC
|
|
PPC_CC:=powerpc-apple-darwin8-gcc-4.0.0
|
|
endif
|
|
ifndef CFLAGS_x86
|
|
CFLAGS_x86:= -isysroot /Developer/SDKs/MacOSX10.4u.sdk
|
|
endif
|
|
ifndef LDFLAGS_x86
|
|
LDFLAGS_x86:= -Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk
|
|
endif
|
|
ifndef x86_CC
|
|
x86_CC:=i686-apple-darwin8-gcc-4.0.0
|
|
endif
|
|
ifdef WITH_PNG
|
|
ifndef LIBPNG_PPC_CONFIG
|
|
LIBPNG_PPC_CONFIG:=$(LIBPNG-CONFIG)
|
|
endif
|
|
ifndef LIBPNG_x86_CONFIG
|
|
LIBPNG_x86_CONFIG:=$(LIBPNG-CONFIG)
|
|
endif
|
|
endif
|
|
ifdef WITH_SDL
|
|
ifndef SDL_PPC_CONFIG
|
|
SDL_PPC_CONFIG:=$(SDL-CONFIG)
|
|
endif
|
|
ifndef SDL_x86_CONFIG
|
|
SDL_x86_CONFIG:=$(SDL-CONFIG)
|
|
endif
|
|
ifndef x86_SDL_LIB
|
|
x86_SDL_LIB:=$(shell echo "`$(SDL_x86_CONFIG) --prefix`/lib/libSDL-1.2.0.dylib")
|
|
endif
|
|
endif
|
|
|
|
ifdef JAGUAR
|
|
LIBPNG-CONFIG:=$(LIBPNG_PPC_CONFIG)
|
|
SDL-CONFIG:=$(SDL_PPC_CONFIG)
|
|
CC_TARGET:=$(PPC_CC)
|
|
CFLAGS:= $(CFLAGS_PPC) -arch ppc
|
|
LDFLAGS:= $(LDFLAGS_PPC)
|
|
endif
|
|
|
|
ifdef FAT_BINARY
|
|
# set up config files
|
|
ifndef SKIP_LIB_TEST
|
|
ifdef WITH_PNG
|
|
TEST:=$(shell lipo -info `$(LIBPNG_PPC_CONFIG) --prefix`/lib/libpng.a | xargs -n 1 | grep "ppc"))
|
|
ifndef TEST
|
|
$(error no PPC libpng found)
|
|
endif
|
|
TEST:=$(shell lipo -info `$(LIBPNG_x86_CONFIG) --prefix`/lib/libpng.a | xargs -n 1 | grep "i386"))
|
|
ifndef TEST
|
|
$(error no x86 libpng found)
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
ifdef UNIVERSAL_x86_PART
|
|
LIBPNG-CONFIG:=$(LIBPNG_x86_CONFIG)
|
|
SDL-CONFIG:=$(SDL_x86_CONFIG)
|
|
CC_TARGET:=$(x86_CC)
|
|
# clear the cached list of PPC libs
|
|
LIBS:=
|
|
OBJS:=
|
|
CFLAGS:= $(CFLAGS_x86) -arch i386
|
|
LDFLAGS:= $(LDFLAGS_x86)
|
|
else
|
|
LIBPNG-CONFIG:=$(LIBPNG_PPC_CONFIG)
|
|
SDL-CONFIG:=$(SDL_PPC_CONFIG)
|
|
CC_TARGET:=$(PPC_CC)
|
|
CFLAGS:= $(CFLAGS_PPC) -arch ppc
|
|
LDFLAGS:= $(LDFLAGS_PPC)
|
|
endif
|
|
endif
|