summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/server.bor
blob: c0af5e9a570b23226bb53ba1398f3edbb5b14830 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#
# $Id$
#
# Makefile for building the GroupRef_Manipulation test client
#

NAME = server


TAO_IDL = $(CORE_BINDIR)\tao_idl -g $(CORE_BINDIR)\gperf.exe

OBJFILES = \
   $(OBJDIR)\Server_ORBInitializer.obj \
   $(OBJDIR)\Server_Request_Interceptor.obj \
   $(OBJDIR)\server.obj \
   $(OBJDIR)\testC.obj \
   $(OBJDIR)\testS.obj \
   $(OBJDIR)\test_i.obj

LFLAGS = \
   -j..\..\..\..\..\lib\$(CONFIG_SUBDIR) -j..\..\..\..\..\lib \
   -L..\..\..\..\..\lib\$(CONFIG_SUBDIR) -L..\..\..\..\..\lib \
  -j$(CORE_BINDIR) \
  -L$(CORE_BINDIR)

LIBFILES = \
   $(ACE_LIB) \
   $(TAO_LIB) \
   $(TAO_PORTABLESERVER_LIB) \
   $(TAO_MESSAGING_LIB) \
   $(TAO_PORTABLEGROUP_LIB) \
   $(TAO_IORMANIP_LIB) \
   $(TAO_SVC_UTILS_LIB) \
   $(TAO_NAMING_LIB) \
   $(TAO_FTORB_UTILS_LIB) \
   $(TAO_FT_CLIENTORB_LIB) \
   $(TAO_FT_SERVERORB_LIB)

IDLFILES = \
   $(IDLDIR)\test.idl

CFLAGS = \
   $(ACE_CFLAGS) \
   $(TAO_CFLAGS) \
   $(TAO_PORTABLESERVER_CFLAGS) \
   $(TAO_MESSAGING_CFLAGS) \
   $(TAO_PORTABLEGROUP_CFLAGS) \
   $(TAO_IORMANIP_CFLAGS) \
   $(TAO_SVC_UTILS_CFLAGS)	\
   $(TAO_NAMING_CFLAGS) \
   $(TAO_FTORB_UTILS_CFLAGS) \
   $(TAO_FT_CLIENTORB_CFLAGS) \
   $(TAO_FT_SERVERORB_CFLAGS)

CPPDIR = .

IDLDIR = .

INCLUDES = \
   Server_ORBInitializer.h \
   Server_Request_Interceptor.h \
   testC.h \
   testS.h \
   testS_T.h \
   test_i.h \
   testS_T.cpp \
   testC.i \
   testS.i \
   testS_T.i \
   test.idl

all: idl_src_files

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

#
# IDL Build rules
#

idl_src_files: $(IDLFILES:.idl=C.cpp) $(IDLFILES:.idl=S.cpp)

# IDL File Directory: .
$(IDLDIR)\testS.cpp $(IDLDIR)\testC.cpp: $(IDLDIR)\test.idl
   $(TAO_IDL) -Gv -DCORBA3 -I..\..\..\.. -Gv -Ge 1 -Sc -Wb,pre_include=ace\pre.h -Wb,post_include=ace\post.h $**