# The contents of this file are subject to the Interbase Public # License Version 1.0 (the "License"); you may not use this file # except in compliance with the License. You may obtain a copy # of the License at http://www.Inprise.com/IPL.html # # Software distributed under the License is distributed on an # "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express # or implied. See the License for the specific language governing # rights and limitations under the License. # # The Original Code was created by Inprise Corporation # and its predecessors. Portions created by Inprise Corporation are # # Copyright (C) 2000 Inprise Corporation # All Rights Reserved. # Contributor(s): ______________________________________. # Start of file prefix.darwin: $(VERSION) @PLATFORM@ # 2 Oct 2002, Nickolay Samofatov - Major Cleanup # # Default build from 10.9 using Clang # # Build instructions # set CFLAGS='-I ICUDIR/icu/source/common -m32 -arch i386' (ucnv.h) # set LDFLAGS='-L ICUDIR/icu/source/lib -m32 -arch i386' (-licuuc) # set CXXFLAGS='-I ICUDIR/icu/source/common -I ICUDIR/icu/source/i18n -m32 -arch i386' # where ICUDIR is where you installed ICU # configure using --with-builtin-tommath # or add the relevant -I, -L for an installed version of libtommath DYLD_LIBRARY_PATH=$(HOME)/icu54/icu/source/lib export DYLD_LIBRARY_PATH MACOSX_DEPLOYMENT_TARGET=10.9 export MACOSX_DEPLOYMENT_TARGET PROD_FLAGS=-O1 -DDARWIN -pipe -MMD -fPIC -fno-common -arch i386 -mmacosx-version-min=10.9 DEV_FLAGS=-ggdb -DDARWIN -pipe -MMD -fPIC -fno-common -Wall -arch i386 -mmacosx-version-min=10.9 -Wno-non-virtual-dtor CXXFLAGS:=$(CXXFLAGS) -fvisibility-inlines-hidden -fvisibility=hidden -msse4 EXE_LINK_OPTIONS:=-m32 LD_FLAGS+=-m32 -arch i386 LINK_LIBS+=-liconv MATHLIB=$(ROOT)/extern/libtommath/.libs/libtommath.a SO_LINK_LIBS+=-liconv include $(ROOT)/gen/darwin.defaults