# Copyright 2009 Ronald S. Burkey <info@sandroid.org>
#
# This file is part of yaAGC.
#
# yaAGC is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# yaAGC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with yaAGC; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
# Filename:	Makefile
# Purpose:	This makefile is used to build the yaACA program.
# Mods:		2009-03-16 RSB	Adapted trivially from yaDEDA2's makefile.
#		2009-04-08 RSB	Eliminated all Allegro and SDL stuff.

APPNAME=yaACA2

# For cross-platform building --- i.e., for building Win32 and Mac OS X versions
# of ${APPNAME} on a Linux platform --- it is assumed that the IMCROSS
# environment (www.sandroid.org/imcross) is installed.  It is further supposed
# that the IMCROSS installation directory is ~/IMCROSS and that ~/IMCROSS/bin 
# is in the PATH.  The following variables just reflect the default setup for
# IMCROSS.
PREFIX_WIN=i386-mingw32
PREFIX_MAC=powerpc-apple-darwin9
BIN_WIN=${HOME}/IMCROSS/i386-mingw32/bin
BIN_MAC=${HOME}/IMCROSS/mac/bin
INC_MAC=${HOME}/IMCROSS/mac/include
SDK_MAC=${HOME}/IMCROSS/mac/SDKs/MacOSX10.4u.sdk

# This is just so that when I build it, it will be statically linked.  For
# anybody else, it will just accept whatever your wxWidgets default library is.
ifeq "${USER}" "rburkey"
WXSTATIC=--static
endif

.PHONY: default
default: Linux

.PHONY: all-archs
all-archs: Linux Win32 MacOsX

.PHONY: Linux
Linux: ${APPNAME}

.PHONY: Win32
Win32: ${APPNAME}.exe

.PHONY: MacOsX
MacOsX: ${APPNAME}-macosx

.PHONY: clean
clean:
	-rm -rf temp
	-rm *~ *.bak ${APPNAME} *.exe *-macosx*

SOURCES:=${APPNAME}.cpp \
	../yaAGC/agc_utilities.c \
	../yaAGC/SocketAPI.c \
	../yaAGC/agc_engine.c \
	../yaAGC/Backtrace.c \
	../yaAGC/random.c

HEADERS:=${APPNAME}.h

${APPNAME}: ${SOURCES} ${HEADERS}
	g++ \
		`wx-config ${WXSTATIC} --cxxflags` \
		-o $@ ${SOURCES} \
		`wx-config ${WXSTATIC} --libs`
	strip $@

${APPNAME}.exe: ${SOURCES} ${HEADERS}
	${PREFIX_WIN}-g++ \
		`${BIN_WIN}/wx-config --static --cxxflags` \
		-o $@ ${SOURCES} \
		`${BIN_WIN}/wx-config --static --libs`
	${PREFIX_WIN}-strip $@

${APPNAME}-macosx: ${SOURCES} ${HEADERS}
	powerpc-apple-darwin9-g++ \
		-arch ppc -arch i386 -I${INC_MAC} -isysroot ${SDK_MAC} \
		`${BIN_MAC}/wx-config --static --cxxflags` \
		-o $@ ${SOURCES} \
		`${BIN_MAC}/wx-config --static --libs`
	${PREFIX_MAC}-strip $@

ignore-${APPNAME}-macosx: ${SOURCES} ${HEADERS}
	powerpc-apple-darwin9-g++ \
		-arch ppc -I${INC_MAC} -isysroot ${SDK_MAC} \
		-I${SDK_MAC}/usr/include/c++/4.0.0 \
		-I${SDK_MAC}/usr/include/c++/4.0.0/powerpc-apple-darwin9 \
		`${BIN_MAC}/wx-config --static --cxxflags` \
		-o $@-ppc ${SOURCES} \
		`${BIN_MAC}/wx-config --static --libs`
	powerpc-apple-darwin9-lipo \
		$@-ppc \
		-remove i386 \
		-output $@-ppc-a
	i686-apple-darwin9-g++ \
		-arch i386 -I${INC_MAC} -isysroot ${SDK_MAC} \
		-I${SDK_MAC}/usr/include/c++/4.0.0 \
		-I${SDK_MAC}/usr/include/c++/4.0.0/i686-apple-darwin9 \
		`${BIN_MAC}/wx-config --static --cxxflags` \
		-o $@-i386 ${SOURCES} \
		`${BIN_MAC}/wx-config --static --libs`
	i686-apple-darwin9-lipo \
		$@-i386 \
		-remove ppc \
		-output $@-i386-a
	${PREFIX_MAC}-lipo \
		$@-ppc-a \
		$@-i386-a \
		-create \
		-output $@		
	${PREFIX_MAC}-strip $@


