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

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

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

# set C++ compiler flags.
CXXFLAGS = -D_REENTRANT -DTHREAD -DPTHREAD -D_GNU_SOURCE

# 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, VisiBroker 4.5 need pthread library.
ORB_NEEDED_LIBRARIES = -lpthread

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

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

ORB_NAME = VisiBroker4

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