# Makefile for omniORB2 -- NT / Windows '95
#
# Type NMAKE CFG="HELP" for help.

CONFIG_MAKEFILE=.\CONFIG.win32

!INCLUDE "$(CONFIG_MAKEFILE)"

!IF "$(CFG)" == ""
!MESSAGE No configuration specified.  Defaulting to "INSTALL" (Making all configurations 
!MESSAGE and installing them)
!MESSAGE For help, type NMAKE CFG="HELP"
CFG=INSTALL
!ELSEIF "$(CFG)" == "omniORB2_shared"
CFG = omniORB2_DLL
!ELSEIF "$(CFG)" == "omnithread_shared"
CFG = omnithread_DLL
!ENDIF

!IF "$(CFG)" != "omniORB2_DLL" && "$(CFG)" !=\
 "omnithread_DLL" && "$(CFG)" != "omniORB2_static"\
 && "$(CFG)" != "omnithread_static" && "$(CFG)" != "ALL" \
 && "$(CFG)" != "omniidl2" && "$(CFG)" != "Applications" && "$(CFG)" != "all" \
 && "$(CFG)" != "install" && "$(CFG)" != "INSTALL"

!IF "$(CFG)" != "HELP"
!MESSAGE Invalid configuration "$(CFG)" specified.
!ENDIF
!MESSAGE You can specify a configuration when running NMAKE on this makefile
!MESSAGE by defining the macro CFG on the command line.  For example:
!MESSAGE 
!MESSAGE NMAKE /f "MAKEFILE" CFG="omniORB2_DLL"
!MESSAGE 
!MESSAGE Possible choices for configuration are:
!MESSAGE 
!MESSAGE "omniORB2_DLL"		 ("Win32 (x86) Dynamic-Link Library")
!MESSAGE "omniORB2_static"	 ("Win32 (x86) Static Library")
!MESSAGE "omniidl2"			 (IDL compiler for omniORB2)
!MESSAGE "Applications"		 (COSS Naming Service and utilities)
!MESSAGE 
!MESSAGE "ALL"				 (Makes all of the above)
!MESSAGE "INSTALL" (default) (Makes all of the above and installs them)
!MESSAGE
!MESSAGE A build can be cleaned by specifying:
!MESSAGE
!MESSAGE NMAKE /f "MAKEFILE" CLEAN CFG="<configuration>"
!MESSAGE
!ERROR Please specify one of the above configurations.
!ENDIF 

!IF "$(OS)" == "Windows_NT"
NULL=
!ELSE 
NULL=nul
!ENDIF 


# Top-level source directory for librarys:

SRCDIR = $(SRCDIR)\lib

################################################################################
# Begin Project

!IF "$(CFG)" == "install" || "$(CFG)" == "INSTALL"

ALL: "MAKEALL" "INSTALL_MAIN" "INSTALL_DLL" "INSTALL_DOCS"
	

CLEAN:
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CLEAN CFG="ALL"



"MAKEALL":
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CFG="ALL"


"INSTALL_MAIN": "MAKE_MAIN_DIRS" "COPY_ORB_INCLUDES"
	@copy $(BASEDIR)\omniORB2_shared\omniORB2_rt.lib $(INSTALL_LOC)\lib
	@copy $(BASEDIR)\omnithread_shared\omnithread_rt.lib $(INSTALL_LOC)\lib
	@copy $(BASEDIR)\omniORB2_static\omniORB2.lib $(INSTALL_LOC)\lib
	@copy $(BASEDIR)\omnithread_static\omnithread.lib $(INSTALL_LOC)\lib
	@copy $(BASEDIR)\omniidl2\omniidl2.exe $(INSTALL_LOC)\bin
	@copy $(BASEDIR)\appl\omniNames\omniNames.exe $(INSTALL_LOC)\bin
	@copy $(BASEDIR)\appl\utils\catior\catior.exe $(INSTALL_LOC)\bin
	@copy $(BASEDIR)\appl\utils\genior\genior.exe $(INSTALL_LOC)\bin
	@copy $(BASEDIR)\appl\utils\nameclt\nameclt.exe $(INSTALL_LOC)\bin
	@copy $(INCLDIR)\omnithread.h $(INSTALL_LOC)\include
	@copy $(INCLDIR)\omnithread\nt.h $(INSTALL_LOC)\include\omnithread

"COPY_ORB_INCLUDES":
	@copy $(INCLDIR)\omniORB2\bufferedStream.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\CORBA.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\CORBA_basetypes.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\CORBA_sysdep.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\GIOP.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\giopDriver.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\IIOP.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\initFile.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\IOP.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\Naming_NT.hh $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\omniInternal.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\omniORB.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\proxyFactory.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\rope.h $(INSTALL_LOC)\include\omniORB2
	@copy $(INCLDIR)\omniORB2\seqtemplates.h $(INSTALL_LOC)\include\omniORB2

"INSTALL_DLL":
	@copy $(BASEDIR)\omniORB2_shared\omniORB2_rt.dll $(DLL_LOC)
	@copy $(BASEDIR)\omnithread_shared\omnithread_rt.dll $(DLL_LOC)

"INSTALL_DOCS":
	@copy $(BASEDIR)\doc\omniNames.ps $(INSTALL_LOC)\doc	
	@copy $(BASEDIR)\doc\omniNames.pdf $(INSTALL_LOC)\doc
	@copy $(BASEDIR)\doc\omniORB2.ps $(INSTALL_LOC)\doc
	@copy $(BASEDIR)\doc\omniORB2.pdf $(INSTALL_LOC)\doc
	@copy $(BASEDIR)\doc\omnithread.ps $(INSTALL_LOC)\doc	
	@copy $(BASEDIR)\doc\omnithread.pdf $(INSTALL_LOC)\doc
	@copy $(BASEDIR)\doc\utilities.ps $(INSTALL_LOC)\doc	
	@copy $(BASEDIR)\doc\utilities.pdf $(INSTALL_LOC)\doc
	@copy $(BASEDIR)\README.win32 $(INSTALL_LOC)\doc




"MAKE_MAIN_DIRS":
	if not exist "$(INSTALL_LOC)/$(NULL)" mkdir $(INSTALL_LOC)
	if not exist "$(INSTALL_LOC)\doc/$(NULL)" mkdir $(INSTALL_LOC)\doc
	if not exist "$(INSTALL_LOC)\lib/$(NULL)" mkdir $(INSTALL_LOC)\lib
	if not exist "$(INSTALL_LOC)\bin/$(NULL)" mkdir $(INSTALL_LOC)\bin
	if not exist "$(INSTALL_LOC)\include/$(NULL)" mkdir $(INSTALL_LOC)\include
	if not exist "$(INSTALL_LOC)\include\omniORB2/$(NULL)" mkdir $(INSTALL_LOC)\include\omniORB2
	if not exist "$(INSTALL_LOC)\include\omnithread/$(NULL)" mkdir $(INSTALL_LOC)\include\omnithread


!ELSEIF "$(CFG)" == "ALL" || "$(CFG)" == "all"

ALL :
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CFG="omniORB2_DLL" 
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CFG="omniORB2_static" 
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CFG="omniidl2" 
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CFG="Applications" 


CLEAN:
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CLEAN CFG="omniORB2_DLL" 
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CLEAN CFG="omniORB2_static" 
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CLEAN CFG="omniidl2" 
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CLEAN CFG="Applications" 



!ELSEIF  "$(CFG)" == "omniidl2"

ALL: "$(BASEDIR)\omniidl2"
	$(MAKE) /$(MAKEFLAGS) /F "omniidl2.mak" CFG="omniidl2"

CLEAN:
	$(MAKE) /$(MAKEFLAGS) /F "omniidl2.mak" CLEAN CFG="omniidl2"

"$(BASEDIR)\omniidl2":
	if not exist "$(BASEDIR)\omniidl2/$(NULL)" mkdir $(BASEDIR)\omniidl2



!ELSEIF "$(CFG)" == "Applications"


ALL: "$(BASEDIR)\omniORB2_shared\omniORB2_rt.dll" "$(BASEDIR)\appl" "$(BASEDIR)\appl\utils"
	$(MAKE) /$(MAKEFLAGS) /F "Applications.mak" CFG="ALL"

CLEAN:
	$(MAKE) /$(MAKEFLAGS) /F "Applications.mak" CLEAN CFG="ALL"

"$(BASEDIR)\omniORB2_shared\omniORB2_rt.dll":
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CFG="omniORB2_DLL" 

"$(BASEDIR)\appl":
	if not exist "$(BASEDIR)\appl/$(NULL)" mkdir $(BASEDIR)\appl

"$(BASEDIR)\appl\utils":
	if not exist "$(BASEDIR)\appl\utils/$(NULL)" mkdir $(BASEDIR)\appl\utils

!ELSEIF  "$(CFG)" == "omniORB2_DLL"

OUTDIR=$(BASEDIR)\omniORB2_shared
INTDIR=$(BASEDIR)\omniORB2_shared

ALL : "$(BASEDIR)\omnithread_shared\omnithread_rt.lib" "$(OUTDIR)\omniORB2_rt.dll"

CLEAN : 
	-@erase "$(INTDIR)\constants.obj"
	-@erase "$(INTDIR)\corbaBoa.obj"
	-@erase "$(INTDIR)\corbaObject.obj"
	-@erase "$(INTDIR)\corbaOrb.obj"
	-@erase "$(INTDIR)\corbaString.obj"
	-@erase "$(INTDIR)\exception.obj"
	-@erase "$(INTDIR)\giopClient.obj"
	-@erase "$(INTDIR)\giopServer.obj"
	-@erase "$(INTDIR)\initFile.obj"
	-@erase "$(INTDIR)\ior.obj"
	-@erase "$(INTDIR)\libcWrapper.obj"
	-@erase "$(INTDIR)\mbufferedStream.obj"
	-@erase "$(INTDIR)\NamingSK_NT.obj"
	-@erase "$(INTDIR)\nbufferedStream.obj"
	-@erase "$(INTDIR)\object.obj"
	-@erase "$(INTDIR)\objectKey.obj"
	-@erase "$(INTDIR)\objectRef.obj"
	-@erase "$(INTDIR)\orb.obj"
	-@erase "$(INTDIR)\strand.obj"
	-@erase "$(INTDIR)\tcpSocket_NT.obj"
	-@erase "$(INTDIR)\unshared.obj"
	-@erase "$(OUTDIR)\omniORB2_rt.dll"
	-@erase "$(OUTDIR)\omniORB2_rt.exp"
	-@erase "$(OUTDIR)\omniORB2_rt.lib"
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CLEAN CFG="omnithread_DLL" 	

"$(OUTDIR)" :
    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"

CPP_PROJ=/nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D\
 "__NT__" /D "_X86_" /D "NTArchitecture" /D "_OMNIORB2_DLL" /Fo"$(INTDIR)/" /c 
CPP_OBJS=$(BASEDIR)\omniORB2_shared/

.cc{$(CPP_OBJS)}.obj:
   $(CPP) $(CPP_PROJ) $< 

LINK32_FLAGS=wsock32.lib advapi32.lib \
 "$(BASEDIR)\omnithread_shared\omnithread_rt.lib" /nologo /subsystem:windows\
  /dll /pdb:none /machine:I386 /def:"$(SRCDIR)\omniORB2\omniorb2.def" \
  /out:"$(OUTDIR)/omniORB2_rt.dll" /implib:"$(OUTDIR)/omniORB2_rt.lib" 
LINK32_OBJS= \
	"$(INTDIR)\constants.obj" \
	"$(INTDIR)\corbaBoa.obj" \
	"$(INTDIR)\corbaObject.obj" \
	"$(INTDIR)\corbaOrb.obj" \
	"$(INTDIR)\corbaString.obj" \
	"$(INTDIR)\exception.obj" \
	"$(INTDIR)\giopClient.obj" \
	"$(INTDIR)\giopServer.obj" \
	"$(INTDIR)\initFile.obj" \
	"$(INTDIR)\ior.obj" \
	"$(INTDIR)\libcWrapper.obj" \
	"$(INTDIR)\mbufferedStream.obj" \
	"$(INTDIR)\NamingSK_NT.obj" \
	"$(INTDIR)\nbufferedStream.obj" \
	"$(INTDIR)\object.obj" \
	"$(INTDIR)\objectKey.obj" \
	"$(INTDIR)\objectRef.obj" \
	"$(INTDIR)\orb.obj" \
	"$(INTDIR)\strand.obj" \
	"$(INTDIR)\tcpSocket_NT.obj" \
	"$(INTDIR)\unshared.obj" \
	"$(BASEDIR)\omnithread_shared\omnithread_rt.lib"

"$(OUTDIR)\omniORB2_rt.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
    $(LINK32) @<<
  $(LINK32_FLAGS) $(LINK32_OBJS)
<<


!ELSEIF  "$(CFG)" == "omnithread_DLL"

OUTDIR=$(BASEDIR)\omnithread_shared
INTDIR=$(BASEDIR)\omnithread_shared

ALL : "$(OUTDIR)\omnithread_rt.dll"

CLEAN : 
	-@erase "$(INTDIR)\nt.obj"
	-@erase "$(OUTDIR)\omnithread_rt.dll"
	-@erase "$(OUTDIR)\omnithread_rt.exp"
	-@erase "$(OUTDIR)\omnithread_rt.lib"

"$(OUTDIR)" :
    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"

CPP_PROJ=/nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D\
 "__NT__" /D "_X86_" /D "NTArchitecture" /D "_OMNITHREAD_DLL" /Fo"$(INTDIR)/" /c\
 
CPP_OBJS=$(BASEDIR)\omnithread_shared/

.cc{$(CPP_OBJS)}.obj:
   $(CPP) $(CPP_PROJ) $< 

LINK32_FLAGS=/nologo /subsystem:windows /dll /pdb:none /machine:I386\
 /out:"$(OUTDIR)/omnithread_rt.dll" /implib:"$(OUTDIR)/omnithread_rt.lib" 
LINK32_OBJS= \
	"$(INTDIR)\nt.obj"

"$(OUTDIR)\omnithread_rt.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
    $(LINK32) @<<
  $(LINK32_FLAGS) $(LINK32_OBJS)
<<



!ELSEIF  "$(CFG)" == "omniORB2_static"


OUTDIR=$(BASEDIR)\omniORB2_static
INTDIR=$(BASEDIR)\omniORB2_static

ALL : "$(BASEDIR)\omnithread_static\omnithread.lib" "$(OUTDIR)\omniORB2.lib"

CLEAN : 
	-@erase "$(INTDIR)\constants.obj"
	-@erase "$(INTDIR)\corbaBoa.obj"
	-@erase "$(INTDIR)\corbaObject.obj"
	-@erase "$(INTDIR)\corbaOrb.obj"
	-@erase "$(INTDIR)\corbaString.obj"
	-@erase "$(INTDIR)\exception.obj"
	-@erase "$(INTDIR)\giopClient.obj"
	-@erase "$(INTDIR)\giopServer.obj"
	-@erase "$(INTDIR)\initFile.obj"
	-@erase "$(INTDIR)\ior.obj"
	-@erase "$(INTDIR)\libcWrapper.obj"
	-@erase "$(INTDIR)\NamingSK_NT.obj"
	-@erase "$(INTDIR)\nbufferedStream.obj"
	-@erase "$(INTDIR)\object.obj"
	-@erase "$(INTDIR)\objectKey.obj"
	-@erase "$(INTDIR)\objectRef.obj"
	-@erase "$(INTDIR)\orb.obj"
	-@erase "$(INTDIR)\strand.obj"
	-@erase "$(INTDIR)\tcpSocket_NT.obj"
	-@erase "$(INTDIR)\unshared.obj"
	-@erase "$(OUTDIR)\omniORB2.lib"
	$(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CLEAN CFG="omnithread_static"

"$(OUTDIR)" :
    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"

CPP_PROJ=/nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D\
 "__NT__" /D "_X86_" /D "NTArchitecture" /D "_WINSTATIC" /Fo"$(INTDIR)/" /c 
CPP_OBJS=$(BASEDIR)\omniORB2_static/

.cc{$(CPP_OBJS)}.obj:
   $(CPP) $(CPP_PROJ) $< 
	
LIB32_FLAGS=/nologo /out:"$(OUTDIR)/omniORB2.lib" 
LIB32_OBJS= \
	"$(INTDIR)\constants.obj" \
	"$(INTDIR)\corbaBoa.obj" \
	"$(INTDIR)\corbaObject.obj" \
	"$(INTDIR)\corbaOrb.obj" \
	"$(INTDIR)\corbaString.obj" \
	"$(INTDIR)\exception.obj" \
	"$(INTDIR)\giopClient.obj" \
	"$(INTDIR)\giopServer.obj" \
	"$(INTDIR)\initFile.obj" \
	"$(INTDIR)\ior.obj" \
	"$(INTDIR)\libcWrapper.obj" \
	"$(INTDIR)\NamingSK_NT.obj" \
	"$(INTDIR)\nbufferedStream.obj" \
	"$(INTDIR)\object.obj" \
	"$(INTDIR)\objectKey.obj" \
	"$(INTDIR)\objectRef.obj" \
	"$(INTDIR)\orb.obj" \
	"$(INTDIR)\strand.obj" \
	"$(INTDIR)\tcpSocket_NT.obj" \
	"$(INTDIR)\unshared.obj" \
	"$(BASEDIR)\omnithread_static\omnithread.lib"

"$(OUTDIR)\omniORB2.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
    $(LIB32) @<<
  $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
<<

!ELSEIF  "$(CFG)" == "omnithread_static"

OUTDIR=$(BASEDIR)\omnithread_static
INTDIR=$(BASEDIR)\omnithread_static

ALL : "$(OUTDIR)\omnithread.lib"

CLEAN : 
	-@erase "$(INTDIR)\nt.obj"
	-@erase "$(OUTDIR)\omnithread.lib"

"$(OUTDIR)" :
    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"

CPP_PROJ=/nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D\
 "__NT__" /D "_X86_" /D "NTArchitecture" /D "_WINSTATIC" /Fo"$(INTDIR)/" /c 
CPP_OBJS=$(BASEDIR)\omnithread_static/

.cc{$(CPP_OBJS)}.obj:
   $(CPP) $(CPP_PROJ) $< 

LIB32_FLAGS=/nologo /out:"$(OUTDIR)/omnithread.lib" 
LIB32_OBJS= \
	"$(INTDIR)\nt.obj"

"$(OUTDIR)\omnithread.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
    $(LIB32) @<<
  $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
<<

!ENDIF 

################################################################################
# Begin Target

# Name "omniORB2_DLL"
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\objectRef.cc
DEP_CPP_OBJEC=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	

"$(INTDIR)\objectRef.obj" : $(SOURCE) $(DEP_CPP_OBJEC) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\corbaBoa.cc
DEP_CPP_CORBA=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	

"$(INTDIR)\corbaBoa.obj" : $(SOURCE) $(DEP_CPP_CORBA) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\corbaObject.cc
DEP_CPP_CORBAO=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
		

"$(INTDIR)\corbaObject.obj" : $(SOURCE) $(DEP_CPP_CORBAO) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\corbaOrb.cc
DEP_CPP_CORBAOR=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
		

"$(INTDIR)\corbaOrb.obj" : $(SOURCE) $(DEP_CPP_CORBAOR) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\corbaString.cc
DEP_CPP_CORBAS=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\


"$(INTDIR)\corbaString.obj" : $(SOURCE) $(DEP_CPP_CORBAS) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\exception.cc
DEP_CPP_EXCEP=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\


"$(INTDIR)\exception.obj" : $(SOURCE) $(DEP_CPP_EXCEP) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\giopClient.cc
DEP_CPP_GIOPC=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\


"$(INTDIR)\giopClient.obj" : $(SOURCE) $(DEP_CPP_GIOPC) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\giopServer.cc
DEP_CPP_GIOPS=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\


"$(INTDIR)\giopServer.obj" : $(SOURCE) $(DEP_CPP_GIOPS) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\initFile.cc
DEP_CPP_INITF=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	

"$(INTDIR)\initFile.obj" : $(SOURCE) $(DEP_CPP_INITF) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\ior.cc
DEP_CPP_IOR_C=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\


"$(INTDIR)\ior.obj" : $(SOURCE) $(DEP_CPP_IOR_C) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\libcWrapper.cc
DEP_CPP_LIBCW=\
	"$(SRCDIR)\omniORB2\libcWrapper.h"\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	

"$(INTDIR)\libcWrapper.obj" : $(SOURCE) $(DEP_CPP_LIBCW) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\mbufferedStream.cc
DEP_CPP_MBUFF=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	

"$(INTDIR)\mbufferedStream.obj" : $(SOURCE) $(DEP_CPP_MBUFF) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\NamingSK_NT.cc
DEP_CPP_NAMIN=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
		

"$(INTDIR)\NamingSK_NT.obj" : $(SOURCE) $(DEP_CPP_NAMIN) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\nbufferedStream.cc
DEP_CPP_NBUFF=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\

"$(INTDIR)\nbufferedStream.obj" : $(SOURCE) $(DEP_CPP_NBUFF) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\unshared.cc
DEP_CPP_UNSHA=\
	"$(SRCDIR)\omniORB2\libcWrapper.h"\
	"$(SRCDIR)\omniORB2\tcpSocket_NT.h"\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	

"$(INTDIR)\unshared.obj" : $(SOURCE) $(DEP_CPP_UNSHA) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\strand.cc
DEP_CPP_STRAN=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	

"$(INTDIR)\strand.obj" : $(SOURCE) $(DEP_CPP_STRAN) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\tcpSocket_NT.cc
DEP_CPP_TCPSO=\
	"$(SRCDIR)\omniORB2\libcWrapper.h"\
	"$(SRCDIR)\omniORB2\tcpSocket_NT.h"\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	{$(INCLUDE)}"\sys\types.h"\
	

"$(INTDIR)\tcpSocket_NT.obj" : $(SOURCE) $(DEP_CPP_TCPSO) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\orb.cc
DEP_CPP_ORB_C=\
	"$(SRCDIR)\omniORB2\tcpSocket_NT.h"\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	{$(INCLUDE)}"\sys\timeb.h"\
	{$(INCLUDE)}"\sys\types.h"\
	

"$(INTDIR)\orb.obj" : $(SOURCE) $(DEP_CPP_ORB_C) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\objectKey.cc
DEP_CPP_OBJECT=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	{$(INCLUDE)}"\sys\timeb.h"\
	{$(INCLUDE)}"\sys\types.h"\
	

"$(INTDIR)\objectKey.obj" : $(SOURCE) $(DEP_CPP_OBJECT) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\object.cc
DEP_CPP_OBJECT_=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	

"$(INTDIR)\object.obj" : $(SOURCE) $(DEP_CPP_OBJECT_) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omniORB2\constants.cc
DEP_CPP_CONST=\
	{$(INCLUDE)}"\omniORB2\bufferedStream.h"\
	{$(INCLUDE)}"\omniORB2\CORBA.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_basetypes.h"\
	{$(INCLUDE)}"\omniORB2\CORBA_sysdep.h"\
	{$(INCLUDE)}"\omniORB2\GIOP.h"\
	{$(INCLUDE)}"\omniORB2\giopDriver.h"\
	{$(INCLUDE)}"\omniORB2\IIOP.h"\
	{$(INCLUDE)}"\omniORB2\initFile.h"\
	{$(INCLUDE)}"\omniORB2\IOP.h"\
	{$(INCLUDE)}"\omniORB2\Naming.hh"\
	{$(INCLUDE)}"\omniORB2\Naming_NT.hh"\
	{$(INCLUDE)}"\omniORB2\omniInternal.h"\
	{$(INCLUDE)}"\omniORB2\omniORB.h"\
	{$(INCLUDE)}"\omniORB2\proxyFactory.h"\
	{$(INCLUDE)}"\omniORB2\rope.h"\
	{$(INCLUDE)}"\omniORB2\seqtemplates.h"\
	{$(INCLUDE)}"\omniORB2\templates.h"\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	

"$(INTDIR)\constants.obj" : $(SOURCE) $(DEP_CPP_CONST) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


# End Source File
################################################################################
# Begin Project Dependency

# Project_Dep_Name "omnithread_rt.lib"

!IF  "$(CFG)" == "omniORB2_DLL"

"$(BASEDIR)\omnithread_shared\omnithread_rt.lib" : 
   $(MAKE) /$(MAKEFLAGS) /F "MAKEFILE" CFG="omnithread_DLL" 

!ENDIF 

# End Project Dependency
# End Target



################################################################################
# Begin Target

# Name "omniORB2_static"
################################################################################

################################################################################
# Begin Project Dependency

# Project_Dep_Name "omnithread.lib"
# omnithread for omniORB2

!IF  "$(CFG)" == "omniORB2_static"

"$(BASEDIR)\omnithread_static\omnithread.lib" : 
   $(MAKE) /$(MAKEFLAGS) /F "MAKEFILE"\
 CFG="omnithread_static" 

!ENDIF 

# End Project Dependency
# End Target
################################################################################


################################################################################
# Begin Target

# Name "omnithread"
################################################################################
# Begin Source File

SOURCE=$(SRCDIR)\omnithread\nt.cc

!IF  "$(CFG)" == "omnithread_DLL" || "$(CFG)" == "omnithread_static"

DEP_CPP_NT_CP=\
	{$(INCLUDE)}"\omnithread.h"\
	{$(INCLUDE)}"\omnithread\nt.h"\
	

"$(INTDIR)\nt.obj" : $(SOURCE) $(DEP_CPP_NT_CP) "$(INTDIR)"
   $(CPP) $(CPP_PROJ)  /Tp$(SOURCE)


!ENDIF 

# End Source File
# End Target






