######################################################################
##
## This makefile configures the CorbaScript compilation for
##   - OS:  OSF1 V4.0
##   - C++: GNU GCC 2.95.1
##   - ORB: ORBacus 3.x
##
##  Update the following variables to your configuration.
##

CS_WITH_GCC = yes

# set the C++ compiler.
CXX = g++

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

# set C++ compiler flags.
# CXXFLAGS = --no-implicit-templates -Wall -Wno-return-type
CXXFLAGS = -Wall -Wno-unused # -fpermissive

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

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

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

ORB_NAME = ORBacus3

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