######################################################################
##
## This makefile configures the CorbaScript compilation for
##   - OS:  Sun Solaris
##   - C++: Sun C++ 4.2 compiler
##   - ORB: OAK (multithreaded or not)
##
##  Update the following variables to your configuration.
##

# set the C++ compiler, here is SUN C++ 4.2 compiler.
CXX = CC

# set the C++ linker.
LD = $(CXX)

# set C++ compiler flags.
ifdef ORB_IS_MULTITHREADED
CXXFLAGS = -pta -mt -DOAK_MT -DOAK_MT_LIB_solaris 
else
CXXFLAGS = -pta
endif

# set the C++ compiler flag to generate make dependencies.
CXXDEPENDFLAG = -xM

# The tool to create new archives.
AR = CC $(CXXFLAGS) -xar -o

# The tool (if needed) to ranlib archives.
RANLIB = :

# The system dynamic libraries needed by your ORB.
# on Solaris, OAK need socket and nsl libraries.
ORB_NEEDED_LIBRARIES = -lsocket -lnsl

# The dynamic library for the dynamic linker (if needed).
SYSTEM_LD_LIBRARIES = -ldl

######################################################################
# don't modify ORB name.

ORB_NAME = OAK

######################################################################
##
## end of file 'config/platforms/OAK_SUN_CC'.
##
######################################################################
