blob: e18bfdee82414b7bebc6ef3de44bb89e36046ac2 (
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
|
#
# Makefile for building the POA Reference_Counted_Servant executable
#
NAME = server
OBJFILES = \
$(OBJDIR)\server.obj
CFLAGS = \
$(ACE_CFLAGS) \
$(TAO_CFLAGS) \
$(TAO_PORTABLESERVER_CFLAGS) \
-I..\Generic_Servant \
-DGENERIC_SERVANT_BUILD_DLL=$(DLL_FLAG)
LIBFILES = \
$(ACE_LIB) \
$(TAO_LIB) \
$(TAO_PORTABLESERVER_LIB) \
$(CORE_BINDIR)\Generic_Servant$(LIB_DECORATOR).lib
CPPDIR = .
!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
|