summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-01-03 15:45:24 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-01-03 15:45:24 +0000
commit8d5166ef40d392f19e8ee9f01fa28967f40f7ad3 (patch)
treebf0b81a4afbf4c2483b2167c98ec16924aa026a1 /TAO/orbsvcs/tests
parent78cd8476611b9f6e5d57977d2f81f295193c2bac (diff)
downloadATCD-8d5166ef40d392f19e8ee9f01fa28967f40f7ad3.tar.gz
ChangeLogTag: Wed Jan 3 09:28:41 2001 Jeff Parsons <parsons@cs.wustl.edu>
Diffstat (limited to 'TAO/orbsvcs/tests')
-rw-r--r--TAO/orbsvcs/tests/InterfaceRepo/Application_Test/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/Makefile b/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/Makefile
index 9ce2c9279a9..ad4695c076b 100644
--- a/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/Makefile
+++ b/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/Makefile
@@ -21,13 +21,13 @@ IDL_HDR = testC.h testS.h
CLNT_SRCS = client.cpp ifr_dii_client.cpp
-SVR_SRCS = server.cpp test_i.cpp testC.cpp testS.cpp
+SVR_SRCS = testC.cpp testS.cpp server.cpp test_i.cpp
SRC = $(PROG_SRCS) $(SVR_SRCS)
CLNT_TEST_OBJS = client.o ifr_dii_client.o
-SVR_TEST_OBJS = server.o test_i.o testC.o testS.o
+SVR_TEST_OBJS = testC.o testS.o server.o test_i.o
BIN_UNCHECKED = client server
@@ -55,6 +55,9 @@ include $(TAO_ROOT)/taoconfig.mk
LDFLAGS += -L$(TAO_ROOT)/tao
+.PRECIOUS: testC.cpp testS.cpp testC.h testS.h testC.i testS.i \
+ testS_T.h testS_T.cpp testS_T.i
+
client: $(addprefix $(VDIR),$(CLNT_TEST_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_DYNAMIC_LIBS) $(TAO_CLNT_LIBS) $(POSTLINK)