######################################################################
##
## This makefile configures the CorbaScript compilation for
##   - OS:  Sun Solaris
##   - C++: SUN C++ 4.2 compiler
##   - ORB: VisiBroker 3.3
##
##  Update the following variables to your configuration.
##

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

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

# set C++ compiler flags.
CXXFLAGS = -pta 

# 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, VisiBroker 3.3 need socket and nsl libraries.
ORB_NEEDED_LIBRARIES = -lsocket -lnsl -lposix4

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

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

ORB_NAME = VisiBroker3

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