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

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

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

# /Zi for debugging.

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

LDFLAGS = /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.
!if $(ORB_RELEASE_NUMBER) < 20
ORB_NEEDED_LIBRARIES = wsock32.lib kernel32.lib
!else
ORB_NEEDED_LIBRARIES = kernel32.lib ws2_32.lib advapi32.lib user32.lib
!endif

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

ORB_NAME = Orbix2000

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