############################################################
# platform/macos_gcc3_v1
#  Platform dependent information for g++ with mininum config
#  By Alessandro Pistocchi
#  It seems like this setup is the absolute minimum. I believe
#  we can explore much more with MacOSX. Probably, you can get
#  as much as Linux_xxx. Contribution will be greatly appreciated.
############################################################

# Needed for -undefined dynamic_lookup
# You also need the same when using makecint, so you should add it to
# your .profile
export MACOSX_DEPLOYMENT_TARGET = 10.3
# If you use a shell different from bash, you need to change this

# Tools
RM	    = rm -f
CP	    = cp
AR	    = ar
AROPT       = clq
KRCC        = cc
CC          = gcc
CPP         = g++
LD          = g++
CPREP       = gcc -E -C
CPPPREP     = g++ -E -C

# Compiler and linker option
CCDLLOPT    =
LDDLLOPT    = -bundle -undefined dynamic_lookup
OPTIMIZE    = -O
LDOPT       = -lm -lstdc++
SYSMACRO    = -DG__SHAREDLIB -DG__OSFDLL -DG__NEWSTDHEADER -DG__ERRORCALLBACK
OTHMACRO    = -DG__ERRORCALLBACK
SYSIPATH    =

# libraries
MAINO	    = $(CINTSYSDIR)/main/G__cppmain.o
CINTLIB     = $(CINTSYSDIR)/src/G__ci.a
READLINEA   = 
APIO	    = Api.o Class.o BaseCls.o Type.o DataMbr.o Method.o MethodAr.o CallFunc.o Typedf.o Apiif.o Token.o
RANLIB	    = /usr/bin/ranlib
STDLIBS     = gcc3strm.o stdstrct.o
PLATFORM    =

# source code postfix
CSRCPOST    = .c
CHDRPOST    = .h
CPPSRCPOST  = .C
CPPHDRPOST  = .h
OBJPOST     = .o
DLLPOST     = .dll

 



