summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Thruput/CORBAplus/Makefile
blob: cc6db955b9aa8f3a4cd9ca1eea0b55ce5f520b26 (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
#----------------------------------------------------------------------------
#	$Id$
#
#	Top-level Makefile for the Thruput benchmark
#----------------------------------------------------------------------------

#----------------------------------------------------------------------------
#	Local macros
#----------------------------------------------------------------------------

LDLIBS     	= -lcorba -lunixsvc -lpbroker -lboadc -lnaming -llifecycl -lfsstream

IDL_SRC		= ttcp.cpp ttcp_s.cpp
PROG_SRCS 	= $(IDL_SRC) client.cpp ttcp_i.cpp server.cpp utils.cpp

LSRC = $(PROG_SRCS)

TTCP_CLIENT_OBJS = ttcp.o client.o utils.o

TTCP_SERVER_OBJS = ttcp.o ttcp_s.o server.o ttcp_i.o utils.o

BIN = client server

BUILD = $(BIN)

VLDLIBS = $(LDLIBS:%=%$(VAR))
VBIN = $(BIN:%=%$(VAR))

#----------------------------------------------------------------------------
#	Include macros and targets
#----------------------------------------------------------------------------

exceptions = 1

include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
include $(ACE_ROOT)/include/makeinclude/macros.GNU
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
include $(ACE_ROOT)/include/makeinclude/rules.lib.GNU
#include $(ACE_ROOT)/include/makeinclude/rules.bin.GNU
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU

#----------------------------------------------------------------------------
# Local modifications to variables imported by includes above.
#----------------------------------------------------------------------------

LDFLAGS += -L$(PBHOME)/lib
CPPFLAGS += -I$(PBHOME)/include

$(IDL_SRC): ttcp.idl
	$(PBHOME)/bin/idlc ttcp.idl
	-/bin/mv ttcp.C ttcp.cpp
	-/bin/mv ttcp_s.C ttcp_s.cpp

server:	$(addprefix $(VDIR),$(TTCP_SERVER_OBJS))
	$(LINK.cc) $(LDFLAGS) -o $@ $^ $(PBHOME)/lib/iiop_s.o $(VLDLIBS) $(POSTLINK)
#patch on the previous line to allow reading from an environment variable
#the host (interface) I would like the server to bind to. 
#The patch is "$(PBHOME)/lib/iiop_s.o"

client:	$(addprefix $(VDIR),$(TTCP_CLIENT_OBJS))
	$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)

clean:
	-/bin/rm -rf *.o $(BIN) obj.* core Templates.DB .make.state

realclean: clean
	-/bin/rm -rf ttcp.cpp ttcp.h ttcp_s.cpp ttcp_s.h