2006-04-13 20:47:06 +00:00
|
|
|
# Shared make information between Build engine and games
|
|
|
|
|
|
|
|
ENGINELIB=libengine.a
|
|
|
|
EDITORLIB=libbuild.a
|
|
|
|
|
2009-01-07 14:05:13 +00:00
|
|
|
SDLCONFIG = /usr/local/bin/sdl-config
|
2008-10-24 01:33:53 +00:00
|
|
|
|
|
|
|
ifeq ($(wildcard $(SDLCONFIG)),$(SDLCONFIG))
|
|
|
|
SDLROOT = /usr/local
|
|
|
|
else
|
|
|
|
SDLCONFIG = sdl-config
|
|
|
|
endif
|
|
|
|
|
2008-08-20 22:58:09 +00:00
|
|
|
SDL_FRAMEWORK = 0
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2008-08-20 22:58:09 +00:00
|
|
|
# Overridden for OSes that don't have the cutdown stdc++ that is supc++
|
2008-11-11 14:48:59 +00:00
|
|
|
STDCPPLIB=-lsupc++
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
BUILDCFLAGS=
|
|
|
|
|
|
|
|
# Detect the platform if it wasn't explicitly given to us from
|
|
|
|
# the outside world. This allows cross-compilation by overriding
|
|
|
|
# CC and giving us PLATFORM specifically.
|
2008-08-20 22:58:09 +00:00
|
|
|
#
|
2006-04-13 20:47:06 +00:00
|
|
|
ifndef PLATFORM
|
|
|
|
uname=$(strip $(shell uname -s))
|
|
|
|
PLATFORM=UNKNOWN
|
|
|
|
ifeq ($(findstring Linux,$(uname)),Linux)
|
|
|
|
PLATFORM=LINUX
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring BSD,$(uname)),BSD)
|
|
|
|
PLATFORM=BSD
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring MINGW,$(uname)),MINGW)
|
|
|
|
PLATFORM=WINDOWS
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring Darwin,$(uname)),Darwin)
|
|
|
|
PLATFORM=DARWIN
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring BeOS,$(uname)),BeOS)
|
|
|
|
PLATFORM=BEOS
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring skyos,$(uname)),skyos)
|
|
|
|
PLATFORM=SKYOS
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring QNX,$(uname)),QNX)
|
|
|
|
PLATFORM=QNX
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring SunOS,$(uname)),SunOS)
|
|
|
|
PLATFORM=SUNOS
|
|
|
|
endif
|
|
|
|
ifeq ($(findstring syllable,$(uname)),syllable)
|
|
|
|
PLATFORM=SYLLABLE
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(PLATFORM),LINUX)
|
|
|
|
RENDERTYPE=SDL
|
2008-02-16 22:27:08 +00:00
|
|
|
BUILDCFLAGS+= -DHAVE_INTTYPES
|
2007-12-13 17:38:46 +00:00
|
|
|
GTKCOMPAT32=0
|
2008-08-20 22:58:09 +00:00
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
ifeq ($(findstring x86_64,$(shell uname -m)),x86_64)
|
2007-12-13 17:38:46 +00:00
|
|
|
ifeq (1,$(BUILD32_ON_64))
|
2008-08-20 22:58:09 +00:00
|
|
|
# On my 64bit Gentoo these are the 32bit emulation libs
|
2007-12-13 17:38:46 +00:00
|
|
|
LIBS+= -m32 -L/emul/linux/x86/usr/lib
|
|
|
|
BUILDCFLAGS+= -m32
|
2008-08-20 22:58:09 +00:00
|
|
|
# Override WITHOUT_GTK=0
|
2007-12-13 17:38:46 +00:00
|
|
|
GTKCOMPAT32=1
|
2008-02-16 22:27:08 +00:00
|
|
|
else
|
|
|
|
override NOASM=1
|
2007-12-13 17:38:46 +00:00
|
|
|
endif
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
|
|
|
endif
|
2008-08-20 22:58:09 +00:00
|
|
|
ifeq ($(PLATFORM),DARWIN)
|
|
|
|
RENDERTYPE = SDL
|
|
|
|
BUILDCFLAGS += -DHAVE_INTTYPES
|
|
|
|
GTKCOMPAT32 = 0
|
|
|
|
SDL_FRAMEWORK = 1
|
|
|
|
# ASM won't work on PowerPC and currently throws errors on i386 too :-/
|
|
|
|
override NOASM = 1
|
|
|
|
endif
|
2006-04-13 20:47:06 +00:00
|
|
|
ifeq ($(PLATFORM),WINDOWS)
|
|
|
|
RENDERTYPE ?= WIN
|
2008-11-13 13:58:53 +00:00
|
|
|
BUILDCFLAGS+= -DHAVE_INTTYPES
|
2006-04-13 20:47:06 +00:00
|
|
|
EXESUFFIX=.exe
|
2006-07-01 01:40:18 +00:00
|
|
|
LIBS+= -lmingwex -lwinmm -L$(DXROOT)/lib -lwsock32 -lcomctl32 #-lshfolder
|
2008-11-11 14:48:59 +00:00
|
|
|
# STDCPPLIB=-lstdc++
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),BSD)
|
|
|
|
RENDERTYPE=SDL
|
2008-02-16 22:27:08 +00:00
|
|
|
BUILDCFLAGS+= -DHAVE_INTTYPES
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),BEOS)
|
|
|
|
RENDERTYPE=SDL
|
|
|
|
STDCPPLIB=-lstdc++
|
|
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),SKYOS)
|
|
|
|
RENDERTYPE=SDL
|
|
|
|
EXESUFFIX=.app
|
2006-09-10 17:40:34 +00:00
|
|
|
override NOASM=1
|
2006-04-13 20:47:06 +00:00
|
|
|
BUILDCFLAGS+= -DUNDERSCORES
|
|
|
|
SDLCONFIG=
|
|
|
|
SDLCONFIG_CFLAGS=-I/boot/programs/sdk/include/sdl
|
|
|
|
LIBS+= -lSDL -lnet
|
|
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),QNX)
|
|
|
|
RENDERTYPE=SDL
|
|
|
|
override USE_OPENGL=0
|
2006-09-10 17:40:34 +00:00
|
|
|
override NOASM=1
|
2006-04-13 20:47:06 +00:00
|
|
|
STDCPPLIB=-lstdc++
|
|
|
|
LIBS+= -lsocket
|
|
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),SUNOS)
|
|
|
|
RENDERTYPE=SDL
|
|
|
|
override USE_OPENGL=0
|
|
|
|
override NOASM=1
|
|
|
|
STDCPPLIB=-lstdc++
|
|
|
|
LIBS+= -lsocket -lnsl
|
|
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),SYLLABLE)
|
|
|
|
RENDERTYPE=SDL
|
|
|
|
override USE_OPENGL=0
|
|
|
|
override NOASM=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(RENDERTYPE),SDL)
|
2008-08-20 22:58:09 +00:00
|
|
|
ifeq ($(SDL_FRAMEWORK),1)
|
|
|
|
LIBS += -Wl,-framework,SDL
|
|
|
|
SDLCONFIG_CFLAGS+= -I/Library/Frameworks/SDL.framework/Headers
|
|
|
|
else
|
2006-04-13 20:47:06 +00:00
|
|
|
ifneq ($(SDLCONFIG),)
|
|
|
|
LIBS+= $(shell $(SDLCONFIG) --libs)
|
|
|
|
SDLCONFIG_CFLAGS+=$(shell $(SDLCONFIG) --cflags)
|
|
|
|
endif
|
2008-08-20 22:58:09 +00:00
|
|
|
endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
ifeq (1,$(WITHOUT_GTK))
|
|
|
|
HAVE_GTK2=0
|
|
|
|
else
|
|
|
|
ifneq (No,$(shell pkg-config --exists gtk+-2.0 || echo No))
|
|
|
|
HAVE_GTK2=1
|
2008-08-20 22:58:09 +00:00
|
|
|
# On my 64bit Gentoo box I have Cairo enabled which means the libs list includes
|
2006-07-01 12:00:26 +00:00
|
|
|
# -lpangocairo-1.0 and -lcairo, however the 32bit compatibility libraries don't
|
|
|
|
# include cairo, so we need to filter out those -l switches in order to link
|
2007-08-17 19:32:56 +00:00
|
|
|
ifneq ($(LINKED_GTK),0)
|
|
|
|
ifeq ($(GTKCOMPAT32),1)
|
|
|
|
LIBS+= $(shell pkg-config --libs gtk+-2.0 | sed 's/\s-l\(pango\)\{0,1\}cairo\S*\s/ /g')
|
|
|
|
else
|
|
|
|
LIBS+= $(shell pkg-config --libs gtk+-2.0)
|
|
|
|
endif
|
2006-07-01 12:00:26 +00:00
|
|
|
endif
|
2006-04-13 20:47:06 +00:00
|
|
|
else
|
|
|
|
HAVE_GTK2=0
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
ifeq ($(RENDERTYPE),WIN)
|
2006-10-15 18:59:45 +00:00
|
|
|
LIBS+= -mwindows -ldxguid
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2008-11-11 13:24:05 +00:00
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
BUILDCFLAGS+= -DRENDERTYPE$(RENDERTYPE)=1
|
|
|
|
|
2008-11-12 04:16:41 +00:00
|
|
|
ifneq (0,$(RANCID_NETWORKING))
|
|
|
|
# LIBS+= -lenet
|
|
|
|
BUILDCFLAGS+= -DRANCID_NETWORKING
|
2008-11-11 13:24:05 +00:00
|
|
|
endif
|
2006-04-13 20:47:06 +00:00
|
|
|
ifneq (0,$(SUPERBUILD))
|
|
|
|
BUILDCFLAGS+= -DSUPERBUILD
|
|
|
|
endif
|
|
|
|
ifneq (0,$(POLYMOST))
|
|
|
|
BUILDCFLAGS+= -DPOLYMOST
|
|
|
|
endif
|
|
|
|
ifneq (0,$(USE_OPENGL))
|
|
|
|
BUILDCFLAGS+= -DUSE_OPENGL
|
|
|
|
endif
|
|
|
|
ifneq (0,$(NOASM))
|
|
|
|
BUILDCFLAGS+= -DNOASM
|
|
|
|
endif
|
2007-08-17 19:32:56 +00:00
|
|
|
ifneq (0,$(LINKED_GTK))
|
|
|
|
BUILDCFLAGS+= -DLINKED_GTK
|
|
|
|
endif
|
2007-08-16 23:25:24 +00:00
|
|
|
|
2008-05-10 01:29:37 +00:00
|
|
|
ifneq (0,$(POLYMER))
|
|
|
|
ifneq (0,$(POLYMOST))
|
|
|
|
ifneq (0,$(USE_OPENGL))
|
|
|
|
BUILDCFLAGS+= -DPOLYMER
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2008-10-18 12:37:26 +00:00
|
|
|
|
2008-10-19 12:14:04 +00:00
|
|
|
ifeq ($(PRETTY_OUTPUT),1)
|
2008-10-20 03:09:19 +00:00
|
|
|
BUILD_STARTED = printf "\033[K\033[1;36mBuild started using \"$(CC) $(OURCFLAGS)\"\033[0m\n"
|
2008-10-18 13:25:23 +00:00
|
|
|
BUILD_FINISHED = printf "\033[K\033[1;36mBuild successful:\033[0m\n"
|
2008-10-31 10:08:51 +00:00
|
|
|
COMPILE_STATUS = printf "\033[K\033[0mBuilding object \033[1m$@\033[0m...\033[0m\r"
|
2008-11-20 14:06:36 +00:00
|
|
|
COMPILE_OK = printf "\033[K\033[0;32mBuilt object \033[1;32m$@\033[0;32m \033[0m\n"
|
2008-10-20 03:09:19 +00:00
|
|
|
COMPILE_FAILED = printf "\033[K\033[0;31mFailed building \033[1;31m$@\033[0;31m from\033[0m \033[1;31m$<\033[0;31m!\033[0m\n"; exit 1
|
2008-10-31 10:08:51 +00:00
|
|
|
LINK_STATUS = printf "\033[K\033[0;0mLinking executable \033[1m$@\033[0;0m...\033[0m\r"
|
2008-11-20 14:06:36 +00:00
|
|
|
LINK_OK = printf "\033[K\033[0;32mLinked executable \033[1;32m$@\033[0;32m \033[0m\n"
|
2008-10-20 03:09:19 +00:00
|
|
|
LINK_FAILED = printf "\033[K\033[0;31mFailed linking executable \033[1;31m$@\033[0;31m!\033[0m\n"; exit 1
|
2008-10-19 12:14:04 +00:00
|
|
|
else
|
|
|
|
BUILD_STARTED =
|
|
|
|
BUILD_FINISHED =
|
|
|
|
COMPILE_STATUS =
|
2008-10-20 03:09:19 +00:00
|
|
|
COMPILE_OK = true
|
|
|
|
COMPILE_FAILED = false; exit 1
|
2008-10-19 12:14:04 +00:00
|
|
|
LINK_STATUS =
|
2008-10-20 03:09:19 +00:00
|
|
|
LINK_OK = true
|
|
|
|
LINK_FAILED = false; exit 1
|
2008-10-20 12:33:29 +00:00
|
|
|
endif
|