summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/RTCorba/Oneways/Reliable/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/RTCorba/Oneways/Reliable/Makefile')
-rw-r--r--TAO/performance-tests/RTCorba/Oneways/Reliable/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/performance-tests/RTCorba/Oneways/Reliable/Makefile b/TAO/performance-tests/RTCorba/Oneways/Reliable/Makefile
index 5a8c6160151..12e7738d1aa 100644
--- a/TAO/performance-tests/RTCorba/Oneways/Reliable/Makefile
+++ b/TAO/performance-tests/RTCorba/Oneways/Reliable/Makefile
@@ -24,7 +24,7 @@ CLIENT_OBJS = client.o testC.o
SERVER_OBJS = server.o test_i.o $(IDL_SRC:.cpp=.o)
BUILD = $(BIN)
-VLDLIBS = $(LDLIBS:%=%$(VAR))
+TAO_SRVR_LIBS = $(LDLIBS:%=%$(VAR))
VBIN = $(BIN:%=%$(VAR))
TAO_IDLFLAGS += -Ge 1
@@ -52,10 +52,10 @@ include $(TAO_ROOT)/taoconfig.mk
.PRECIOUS: $(foreach ext, $(IDL_EXT), test$(ext))
server: $(addprefix $(VDIR),$(SERVER_OBJS))
- $(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
+ $(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_SRVR_LIBS) $(POSTLINK)
client: $(addprefix $(VDIR),$(CLIENT_OBJS))
- $(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
+ $(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_CLNT_LIBS) $(POSTLINK)
realclean: clean
-$(RM) $(foreach ext, $(IDL_EXT), test$(ext))