######################################################################
##
## This makefile configures the CorbaScript compilation for
##   - OS:  Linux
##   - C++: GNU GCC 2.95.x
##   - ORB: ORBacus 3.x
##   - generating shared libraries.
##
##  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, here exception handling.
CXXFLAGS = -Wall -Wno-unused -fPIC

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

# The library file extension, here is for shared libraries.
CS_LIB_EXT= .so

# The tool to create new archives.
AR = $(CXX) $(EXTRA_LD_FLAGS) -shared -o

# The tool (if needed) to ranlib archives.
RANLIB = @echo done building

# The system dynamic libraries needed by your ORB.
# on Linux, ORBacus need no special library.
ifdef ORB_IS_MULTITHREADED
ORB_NEEDED_LIBRARIES = -lJTC -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 = ORBacus3

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