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

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

# set C++ compiler flags.
CXXFLAGS = /nologo /ML /W3 /GX /O2 /D "WIN32" /D\
 "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD\
 /DCS_for_WinMSVC /DTHE_USED_ORB_IS_OAK

# /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.
ORB_NEEDED_LIBRARIES = wsock32.lib   

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

ORB_NAME = OAK

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