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

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

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

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

# 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 AIX, MICO need no libraries.
ORB_NEEDED_LIBRARIES = 
MICO_SYSTEM_LIBRARIES = -ldl

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

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

ORB_NAME = MICO

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