blob: 5dc75e70257db4a609b71fb50d0f1c9cf19aeb00 (
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
33
34
35
36
37
38
39
|
#
# $Id$
#
# Makefile for building the Naming Service executable
#
NAME = Naming_Service
OBJFILES = \
$(OBJDIR)\Naming_Service.obj \
$(OBJDIR)\Naming_Server.obj
CFLAGS = \
$(ACE_CFLAGS) \
$(TAO_CFLAGS) \
$(TAO_PORTABLESERVER_CFLAGS) \
$(TAO_NAMING_CFLAGS) \
$(TAO_MESSAGING_CFLAGS) \
$(TAO_SVC_UTILS_CFLAGS) \
$(TAO_IORTABLE_CFLAGS) \
$(TAO_VALUETYPE_CFLAGS) \
$(TAO_IORINTERCEPTOR_CFLAGS) \
$(TAO_ORT_CFLAGS)
LIBFILES = \
$(ACE_LIB) \
$(TAO_LIB) \
$(TAO_PORTABLESERVER_LIB) \
$(TAO_MESSAGING_LIB) \
$(TAO_NAMING_LIB) \
$(TAO_SVC_UTILS_LIB) \
$(TAO_IORTABLE_LIB) \
$(TAO_VALUETYPE_LIB) \
$(TAO_IORINTERCEPTOR_LIB) \
$(TAO_ORT_LIB)
CPPDIR = .
!include <$(ACE_ROOT)\include\makeinclude\build_core_exe.bor>
|