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

# set the C++ compiler, here is gnu gcc.
CXX = c++

# 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 Linux, Orbix2000 need no special library.
ifdef ORB_IS_MULTITHREADED
ORB_NEEDED_LIBRARIES = -lpthread
else
ORB_NEEDED_LIBRARIES =
endif

# 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 =

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