2006-04-13 20:47:06 +00:00
|
|
|
# Shared make information between Build engine and games
|
|
|
|
|
|
|
|
ENGINELIB=libengine.a
|
|
|
|
EDITORLIB=libbuild.a
|
|
|
|
|
2011-04-07 01:16:29 +00:00
|
|
|
SDLCONFIG = /usr/local/bin/sdl-config
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
SDLNAME = SDL
|
2008-10-24 01:33:53 +00:00
|
|
|
|
|
|
|
ifeq ($(wildcard $(SDLCONFIG)),$(SDLCONFIG))
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
# $(info Detected locally installed SDL 1.X)
|
2008-10-24 01:33:53 +00:00
|
|
|
SDLROOT = /usr/local
|
|
|
|
else
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
# Swap the commenting in the following two lines to
|
|
|
|
# enable SDL 2.X detection
|
|
|
|
SDLCONFIG = /usr/local/file_that_does_not_exist
|
|
|
|
# SDLCONFIG = /usr/local/bin/sdl2-config
|
|
|
|
|
|
|
|
ifeq ($(wildcard $(SDLCONFIG)),$(SDLCONFIG))
|
|
|
|
# $(info Detected locally installed SDL 2.X)
|
|
|
|
SDLROOT = /usr/local
|
|
|
|
SDLNAME = SDL2
|
|
|
|
else
|
|
|
|
# $(info Detected system-wide installed SDL 1.X)
|
|
|
|
SDLCONFIG = /usr/bin/sdl-config
|
|
|
|
endif
|
2008-10-24 01:33:53 +00:00
|
|
|
endif
|
|
|
|
|
2008-08-20 22:58:09 +00:00
|
|
|
SDL_FRAMEWORK = 0
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2010-08-12 21:06:51 +00:00
|
|
|
ifeq (4,$(GCC_MAJOR))
|
|
|
|
L_SSP := -lssp
|
2010-07-03 08:53:57 +00:00
|
|
|
endif
|
|
|
|
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS=$(ARCH)
|
2012-03-23 20:22:10 +00:00
|
|
|
|
2012-05-29 20:01:50 +00:00
|
|
|
ifeq ($(PLATFORM),LINUX)
|
2012-11-15 06:42:37 +00:00
|
|
|
STDCPPLIB:=
|
2012-05-29 20:01:50 +00:00
|
|
|
else
|
|
|
|
# Overridden for OSes that don't have the cutdown stdc++ that is supc++
|
2012-11-15 06:42:37 +00:00
|
|
|
STDCPPLIB:=-lsupc++
|
2012-05-29 20:01:50 +00:00
|
|
|
endif
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
ifeq ($(PLATFORM),LINUX)
|
2010-08-12 21:06:51 +00:00
|
|
|
RENDERTYPE=SDL
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -DHAVE_INTTYPES
|
2010-08-12 21:06:51 +00:00
|
|
|
GTKCOMPAT32=0
|
|
|
|
|
|
|
|
ifeq ($(findstring x86_64,$(shell uname -m)),x86_64)
|
|
|
|
ifeq (1,$(BUILD32_ON_64))
|
|
|
|
# On my 64bit Gentoo these are the 32bit emulation libs
|
|
|
|
LIBS+= -m32 -L/emul/linux/x86/usr/lib
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -m32
|
2010-08-12 21:06:51 +00:00
|
|
|
# Override WITHOUT_GTK=0
|
|
|
|
GTKCOMPAT32=1
|
|
|
|
else
|
|
|
|
override NOASM=1
|
|
|
|
endif
|
|
|
|
endif
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
2008-08-20 22:58:09 +00:00
|
|
|
ifeq ($(PLATFORM),DARWIN)
|
2010-08-12 21:06:51 +00:00
|
|
|
RENDERTYPE = SDL
|
2012-11-15 06:42:37 +00:00
|
|
|
STDCPPLIB:=-lstdc++
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS += -DHAVE_INTTYPES
|
2010-08-12 21:06:51 +00:00
|
|
|
GTKCOMPAT32 = 0
|
|
|
|
SDL_FRAMEWORK = 1
|
2012-03-09 07:43:49 +00:00
|
|
|
|
|
|
|
ifeq (1,$(DARWIN9))
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS += -DDARWIN9
|
2012-03-09 07:43:49 +00:00
|
|
|
endif
|
|
|
|
|
2011-06-17 11:53:41 +00:00
|
|
|
ifeq (1,$(BUILD32_ON_64))
|
2012-03-23 20:22:10 +00:00
|
|
|
ARCH=-arch i386
|
2011-06-17 11:53:41 +00:00
|
|
|
else
|
2011-10-11 16:53:52 +00:00
|
|
|
# ASM won't work on PowerPC or x86_64
|
2011-06-17 11:53:41 +00:00
|
|
|
override NOASM = 1
|
|
|
|
endif
|
2008-08-20 22:58:09 +00:00
|
|
|
endif
|
2006-04-13 20:47:06 +00:00
|
|
|
ifeq ($(PLATFORM),WINDOWS)
|
2010-08-12 21:06:51 +00:00
|
|
|
RENDERTYPE ?= WIN
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -DHAVE_INTTYPES
|
2010-08-12 21:06:51 +00:00
|
|
|
EXESUFFIX=.exe
|
2012-10-29 04:26:25 +00:00
|
|
|
LIBS+= -lmingwex -lwinmm -L$(DXROOT)/lib -lwsock32 -lcomctl32
|
|
|
|
#-lshfolder
|
2012-11-15 06:42:37 +00:00
|
|
|
#STDCPPLIB:=-lstdc++
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),BSD)
|
2010-08-12 21:06:51 +00:00
|
|
|
RENDERTYPE=SDL
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -DHAVE_INTTYPES
|
2012-10-29 04:26:25 +00:00
|
|
|
ifneq ($(findstring i386, $(SYSARCH)), i386)
|
2011-05-11 21:58:19 +00:00
|
|
|
override NOASM=1
|
|
|
|
endif
|
2012-11-15 06:42:37 +00:00
|
|
|
STDCPPLIB:=-lstdc++
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),BEOS)
|
2010-08-12 21:06:51 +00:00
|
|
|
RENDERTYPE=SDL
|
2012-11-15 06:42:37 +00:00
|
|
|
STDCPPLIB:=-lstdc++
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),SKYOS)
|
2010-08-12 21:06:51 +00:00
|
|
|
RENDERTYPE=SDL
|
|
|
|
EXESUFFIX=.app
|
|
|
|
override NOASM=1
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -DUNDERSCORES
|
2010-08-12 21:06:51 +00:00
|
|
|
SDLCONFIG=
|
2012-11-06 07:49:44 +00:00
|
|
|
SDLCONFIG_COMMONFLAGS=-I/boot/programs/sdk/include/sdl
|
2010-08-12 21:06:51 +00:00
|
|
|
LIBS+= -lSDL -lnet
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
2012-05-01 12:37:53 +00:00
|
|
|
ifeq ($(PLATFORM),WII)
|
2012-05-20 07:25:25 +00:00
|
|
|
ifeq ($(strip $(DEVKITPPC)),)
|
|
|
|
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
|
|
|
|
endif
|
|
|
|
|
|
|
|
include $(DEVKITPPC)/wii_rules
|
|
|
|
|
|
|
|
RANLIB=powerpc-eabi-ranlib
|
|
|
|
STRIP=powerpc-eabi-strip
|
|
|
|
|
2012-05-01 12:37:53 +00:00
|
|
|
RENDERTYPE=SDL
|
|
|
|
EXESUFFIX=.elf
|
2012-05-20 07:25:25 +00:00
|
|
|
override USE_OPENGL=0
|
|
|
|
override NOASM=1
|
2012-05-01 12:37:53 +00:00
|
|
|
override WITHOUT_GTK=1
|
2012-05-20 07:25:25 +00:00
|
|
|
# -msdata=eabi
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -g -mtune=750 -meabi -mhard-float \
|
2012-05-20 07:25:25 +00:00
|
|
|
-DGEKKO -DHAVE_INTTYPES -D__POWERPC__ \
|
|
|
|
-I$(LIBOGC_INC) -I$(LIBOGC_INC)/SDL -I$(PORTLIBS)/include
|
2012-05-01 12:37:53 +00:00
|
|
|
SDLCONFIG=
|
|
|
|
LIBS+= -lSDL_mixer -lsmpeg -lSDL -laesnd
|
|
|
|
endif
|
2006-04-13 20:47:06 +00:00
|
|
|
ifeq ($(PLATFORM),QNX)
|
2010-08-12 21:06:51 +00:00
|
|
|
RENDERTYPE=SDL
|
|
|
|
override USE_OPENGL=0
|
|
|
|
override NOASM=1
|
2012-11-15 06:42:37 +00:00
|
|
|
STDCPPLIB:=-lstdc++
|
2010-08-12 21:06:51 +00:00
|
|
|
LIBS+= -lsocket
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),SUNOS)
|
2010-08-12 21:06:51 +00:00
|
|
|
RENDERTYPE=SDL
|
|
|
|
override USE_OPENGL=0
|
|
|
|
override NOASM=1
|
2012-11-15 06:42:37 +00:00
|
|
|
STDCPPLIB:=-lstdc++
|
2010-08-12 21:06:51 +00:00
|
|
|
LIBS+= -lsocket -lnsl
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(PLATFORM),SYLLABLE)
|
2010-08-12 21:06:51 +00:00
|
|
|
RENDERTYPE=SDL
|
|
|
|
override USE_OPENGL=0
|
|
|
|
override NOASM=1
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
|
|
|
|
2012-11-15 06:42:37 +00:00
|
|
|
ifneq (0,$(CLANG))
|
|
|
|
ifneq (,$(STDCPPLIB))
|
|
|
|
STDCPPLIB:=-Xlinker $(STDCPPLIB)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
ifeq ($(RENDERTYPE),SDL)
|
2010-08-12 21:06:51 +00:00
|
|
|
ifeq ($(SDL_FRAMEWORK),1)
|
|
|
|
LIBS += -Wl,-framework,SDL
|
2012-11-06 07:49:44 +00:00
|
|
|
SDLCONFIG_COMMONFLAGS+= -I$(APPLE_FRAMEWORKS)/SDL.framework/Headers
|
2010-08-12 21:06:51 +00:00
|
|
|
else
|
|
|
|
ifneq ($(SDLCONFIG),)
|
Add prototypical SDL 2.X support.
Doesn't work: indexed-color modes, gamma (at least for X11), mouse wheel,
special keys like ENTER or BACKSPACE in the OSD, probably more...
In build/Makefile.shared, we now have logic to autodetect an SDL2 installed
in /usr/local, however OS X and Wii builds follow other Makefile code paths,
it seems. Note that the matching SDL2_mixer must be used then, too.
In source/jaudiolib/src/driver_sdl.c, change the #includes from <SDL/SDL_xxx.h>
to "SDL_xxx.h". SDL wiki says this is the most portable way, hopefully this
doesn't break builds for anyone.
git-svn-id: https://svn.eduke32.com/eduke32@2777 1a8010ca-5511-0410-912e-c29ae57300e0
2012-06-22 21:39:53 +00:00
|
|
|
SDLCONFIG_LIBS+= $(shell $(SDLCONFIG) --libs)
|
|
|
|
LIBS+= $(SDLCONFIG_LIBS)
|
2012-11-06 07:49:44 +00:00
|
|
|
SDLCONFIG_COMMONFLAGS+=$(shell $(SDLCONFIG) --cflags)
|
2010-08-12 21:06:51 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq (1,$(WITHOUT_GTK))
|
|
|
|
HAVE_GTK2=0
|
|
|
|
else
|
|
|
|
ifneq (No,$(shell pkg-config --exists gtk+-2.0 || echo No))
|
|
|
|
HAVE_GTK2=1
|
|
|
|
# On my 64bit Gentoo box I have Cairo enabled which means the libs list includes
|
|
|
|
# -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
|
|
|
|
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
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
HAVE_GTK2=0
|
|
|
|
endif
|
|
|
|
endif
|
2006-04-13 20:47:06 +00:00
|
|
|
else
|
2010-08-12 21:06:51 +00:00
|
|
|
ifeq ($(RENDERTYPE),WIN)
|
|
|
|
LIBS+= -mwindows -ldxguid
|
|
|
|
endif
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
|
|
|
|
2008-11-11 13:24:05 +00:00
|
|
|
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -DRENDERTYPE$(RENDERTYPE)=1 $(W_STRICT_OVERFLOW)
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
ifneq (0,$(USE_OPENGL))
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -DUSE_OPENGL
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
|
|
|
ifneq (0,$(NOASM))
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -DNOASM
|
2006-04-13 20:47:06 +00:00
|
|
|
endif
|
2007-08-17 19:32:56 +00:00
|
|
|
ifneq (0,$(LINKED_GTK))
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -DLINKED_GTK
|
2007-08-17 19:32:56 +00:00
|
|
|
endif
|
2007-08-16 23:25:24 +00:00
|
|
|
|
2008-05-10 01:29:37 +00:00
|
|
|
ifneq (0,$(POLYMER))
|
2011-03-04 08:50:58 +00:00
|
|
|
ifneq (0,$(USE_OPENGL))
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -DPOLYMER
|
2008-05-10 01:29:37 +00:00
|
|
|
endif
|
|
|
|
endif
|
2008-10-18 12:37:26 +00:00
|
|
|
|
2012-03-14 06:27:45 +00:00
|
|
|
ifneq ($(EXESUFFIX_OVERRIDE),)
|
|
|
|
EXESUFFIX=$(EXESUFFIX_OVERRIDE)
|
|
|
|
endif
|
|
|
|
|
2012-03-20 19:29:11 +00:00
|
|
|
STATICSTDCPP?=
|
|
|
|
ifeq (1,$(STATICSTDCPP))
|
|
|
|
STATICSTDCPP= -static
|
|
|
|
endif
|
|
|
|
ifeq (0,$(STATICSTDCPP))
|
|
|
|
STATICSTDCPP= -shared
|
|
|
|
endif
|
|
|
|
|
2012-03-24 08:30:28 +00:00
|
|
|
|
|
|
|
ifneq ($(PLATFORM),WINDOWS)
|
2012-05-20 07:25:25 +00:00
|
|
|
ifneq ($(PLATFORM),WII)
|
|
|
|
LIBS+= -ldl
|
|
|
|
endif
|
|
|
|
LIBS+= -pthread
|
2012-03-24 08:30:28 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(PLATFORM),WINDOWS)
|
|
|
|
ifneq ($(USE_LIBPNG),0)
|
2012-07-20 21:57:53 +00:00
|
|
|
# XXX: these assume that the compiler runs from build/. Ugh.
|
|
|
|
LIBS+= -L../Windows/lib -lpng_mini -lz_mini
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -I../Windows/include
|
2012-03-24 08:30:28 +00:00
|
|
|
endif
|
2012-07-20 21:57:53 +00:00
|
|
|
else
|
|
|
|
ifeq ($(PLATFORM),DARWIN)
|
|
|
|
ifneq ($(USE_LIBPNG),0)
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILDCOMMONFLAGS+= -I/opt/local/include -I/sw/include -I/usr/local/include
|
2012-07-29 23:35:12 +00:00
|
|
|
LIBS+= -L/opt/local/lib -L/usr/local/lib -lpng # -lz
|
2012-07-20 21:57:53 +00:00
|
|
|
endif
|
|
|
|
else
|
2012-10-03 15:29:07 +00:00
|
|
|
ifneq ($(USE_LIBPNG),0)
|
|
|
|
LIBS+= -lpng -lz
|
|
|
|
endif
|
2012-03-24 08:30:28 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(PLATFORM),WINDOWS)
|
2012-03-24 15:59:53 +00:00
|
|
|
LIBS+= $(L_SSP) -Wl,--enable-auto-import
|
2012-03-24 08:30:28 +00:00
|
|
|
LIBS+= -lwsock32 -lws2_32 -lwinmm #-L$(ENETROOT)
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2008-10-19 12:14:04 +00:00
|
|
|
ifeq ($(PRETTY_OUTPUT),1)
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILD_SETTINGS_COMPILER = \033[1;36mcompiler: \033[0;36m\"$(COMPILER) $(OURCFLAGS)\"
|
2012-11-05 02:49:08 +00:00
|
|
|
BUILD_SETTINGS_ASSEMBLER = \033[1;36massembler: \033[0;36m\"$(AS) $(OURASFLAGS)\"
|
2012-11-06 07:49:44 +00:00
|
|
|
BUILD_SETTINGS_LINKER = \033[1;36mlinker: \033[0;36m\"$(PRINTLDFLAGS) $(LIBS) $(STATICSTDCPP) $(STDCPPLIB)\"
|
2012-10-29 04:26:25 +00:00
|
|
|
ifeq (0,$(NOASM))
|
|
|
|
BUILD_SETTINGS = printf "$(BUILD_SETTINGS_COMPILER)\n$(BUILD_SETTINGS_ASSEMBLER)\n$(BUILD_SETTINGS_LINKER)\033[0m\n"
|
|
|
|
else
|
|
|
|
BUILD_SETTINGS = printf "$(BUILD_SETTINGS_COMPILER)\n$(BUILD_SETTINGS_LINKER)\033[0m\n"
|
|
|
|
endif
|
|
|
|
BUILD_STARTED = printf "\033[K\033[1;36mBuild started using:\033[0m\n"; $(BUILD_SETTINGS)
|
|
|
|
BUILD_ECHOFLAGS = printf "\033[K\033[1;36mEnded compilation in this directory using:\n$(BUILD_SETTINGS_COMPILER)\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"
|
2012-03-04 20:11:49 +00:00
|
|
|
ONESTEP_STATUS = printf "\033[K\033[0mBuilding executable \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"
|
2012-03-04 20:11:49 +00:00
|
|
|
ONESTEP_OK = printf "\033[K\033[0;32mBuilt executable \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
|
2012-11-15 06:42:37 +00:00
|
|
|
ONESTEP_FAILED = printf "\033[K\033[0;31mFailed building executable \033[1;31m$@\033[0;31m!\033[0m\n"; exit 1
|
2010-12-19 22:29:01 +00:00
|
|
|
ARCHIVE_STATUS = printf "\033[K\033[0mCreating library archive \033[1m$@\033[0m...\033[0m\r"
|
|
|
|
ARCHIVE_OK = printf "\033[K\033[0;32mCreated library archive \033[1;32m$@\033[0;32m \033[0m\n"
|
|
|
|
ARCHIVE_FAILED = printf "\033[K\033[0;31mFailed creating library archive \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 =
|
2012-10-29 04:26:25 +00:00
|
|
|
BUILD_ECHOFLAGS =
|
2008-10-19 12:14:04 +00:00
|
|
|
BUILD_FINISHED =
|
|
|
|
COMPILE_STATUS =
|
2012-03-04 20:11:49 +00:00
|
|
|
ONESTEP_STATUS =
|
2008-10-20 03:09:19 +00:00
|
|
|
COMPILE_OK = true
|
2012-03-04 20:11:49 +00:00
|
|
|
ONESTEP_OK = true
|
2008-10-20 03:09:19 +00:00
|
|
|
COMPILE_FAILED = false; exit 1
|
2012-11-15 06:42:37 +00:00
|
|
|
ONESTEP_FAILED = false; exit 1
|
2010-12-19 22:29:01 +00:00
|
|
|
ARCHIVE_STATUS =
|
|
|
|
ARCHIVE_OK = true
|
|
|
|
ARCHIVE_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
|