summaryrefslogtreecommitdiff
path: root/TAO/examples/PluggableUDP/DIOP/Makefile.bor
blob: 53752360e38b30d8d287c821be679fb84a5af32a (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
#
# Makefile for building the TAO PluggableUDP library
#

NAME = TAO_DIOP

OBJFILES = \
        $(OBJDIR)\DIOP_Factory.obj \
        $(OBJDIR)\DIOP_Profile.obj \
        $(OBJDIR)\DIOP_Transport.obj \
        $(OBJDIR)\DIOP_Connector.obj \
        $(OBJDIR)\DIOP_Acceptor.obj \
        $(OBJDIR)\DIOP_Connection_Handler.obj \
        $(OBJDIR)\DIOP_Endpoint.obj \

!ifdef STATIC
CFLAGS = $(ACE_CFLAGS) $(TAO_CFLAGS) $(TAO_DIOP_CFLAGS)
!else

CFLAGS = $(ACE_CFLAGS) $(TAO_CFLAGS) $(TAO_DIOP_CFLAGS) \
        -DTAO_DIOP_BUILD_DLL
!endif

CPPDIR = .

INCLUDES = *.h

LIBFILES = $(ACE_LIB) $(TAO_LIB)

!include <$(ACE_ROOT)\include\makeinclude\build_core_library.bor>