######################################################################
##
## This makefile configures the CorbaScript compilation for
##   - OS:  IRIX SGI
##   - C++: GNU GCC 2.7.2 
##   - ORB: OmniBroker
##
##  Update the following variables to your configuration.
##

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

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

# set C++ compiler flags, exception handling.
CXXFLAGS = -fhandle-exceptions -Wall -Wno-unused 

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

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

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

# The system dynamic libraries needed by your ORB.
# on SGI, OmniBroker need no libraries.
ORB_NEEDED_LIBRARIES =

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

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

ORB_NAME = OmniBroker

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