blob: ee4bbe3b85733c3297c34970cedfddc8cf5556b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#
# Makefile for building the TAO DynamicInterface library
#
NAME = TAO_DynamicInterface
OBJFILES = \
$(OBJDIR)\Context.obj \
$(OBJDIR)\DII_Invocation.obj \
$(OBJDIR)\DII_Reply_Dispatcher.obj \
$(OBJDIR)\Dynamic_Adapter_Impl.obj \
$(OBJDIR)\Dynamic_Implementation.obj \
$(OBJDIR)\ExceptionList.obj \
$(OBJDIR)\Request.obj \
$(OBJDIR)\Server_Request.obj \
$(OBJDIR)\Unknown_User_Exception.obj
!ifdef STATIC
CFLAGS = $(ACE_CFLAGS) $(TAO_CFLAGS) $(TAO_DYNAMICINTERFACE_CFLAGS)
!else
CFLAGS = $(ACE_CFLAGS) $(TAO_CFLAGS) $(TAO_DYNAMICINTERFACE_CFLAGS) \
-DTAO_DYNAMICINTERFACE_BUILD_DLL
!endif
CPPDIR = .
INCDIR_NAME = tao\DynamicInterface
INCLUDES = *.h *.inl
LIBFILES = $(ACE_LIB) $(TAO_LIB) $(TAO_PORTABLESERVER_LIB)
!include <$(ACE_ROOT)\include\makeinclude\build_core_library.bor>
|