######################################################################
##
## This makefile compiles CorbaScript for
##   - OS:  Windows 95/98/NT
##   - C++: Visual C++ 5.0/6.0
##   - ORB: TAO 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 = /nologo /MD /W3 /GX /DWIN32 /DCS_for_WinMSVC

# 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 advapi32.lib

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

ORB_NAME = TAO
ORB_DIR = TAO-1.1

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