######################################################################
##
## This makefile configures the CorbaScript compilation for
##   - OS:  SunOS
##   - C++: GNU GCC 2.95.x
##   - ORB: Orbix2000 2.0
##
##  Update the following variables to your configuration.
##

CS_WITH_GCC = yes

# set the C++ compiler, here is GNU g++.
CXX = g++

# set C++ compiler flags, here exception handling.
CXXFLAGS = -Wall -Wno-unused -Wno-ctor-dtor-privacy -D_REENTRANT 

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

# set C++ linker flags.
LDFLAGS= -Wl,-rpath,$(ORB_SHLIBDIR):$(ORB_SHLIBDIR)/default

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

# The tool to create new archives.
AR = ar crv

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

# The system dynamic libraries needed by your ORB.
# on SunOS, Orbix2000 needs special library.
ORB_NEEDED_LIBRARIES = -lthread

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

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

ORB_NAME = Orbix2000

ORBIX_ART_COMPILER_TYPE = gcc295

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