######################################################################
##
## This makefile compiles CorbaScript for
##   - OS:  Windows 95/98/NT
##   - C++: Visual C++ 5.0/6.0
##   - ORB: MICO
##
##  Update the following variables to your configuration.
##

# set the C++ compiler, here is Visual C++.
CXX = cl.exe

# set C++ compiler flags.
CXXFLAGS = /nologo /MD /W3 /GR /GX /D_WINDOWS /DWIN32 /D_MICO /DCS_for_WinMSVC

# /Zi for debugging.

# set the C++ linker.
LD = link.exe

LDFLAGS = /DEBUG /nologo /subsystem:console /incremental:no

# The tool to create new archives.
AR = lib.exe /nologo /out:

# The system dynamic libraries needed by your ORB.
# on Windows 95, need winsocket 32 library.
ORB_NEEDED_LIBRARIES = wsock32.lib   

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

ORB_NAME = MICO

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