summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Bug_1559
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-21 06:06:39 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-21 06:06:39 +0000
commitdab9068c1c3ccddfe23102c30e796c8729186e66 (patch)
tree6c9e8913b0e767c7e1134d2ffb37ec1042bfcb60 /TAO/tests/Portable_Interceptors/Bug_1559
parenta453686f14fa28a9ff1b2884718c1d7e62205d3b (diff)
downloadATCD-dab9068c1c3ccddfe23102c30e796c8729186e66.tar.gz
ChangeLogTag:Fri Nov 21 02:57:35 UTC 2003 Don Hinton <dhinton@dresystems.com
Diffstat (limited to 'TAO/tests/Portable_Interceptors/Bug_1559')
-rw-r--r--TAO/tests/Portable_Interceptors/Bug_1559/Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/TAO/tests/Portable_Interceptors/Bug_1559/Makefile b/TAO/tests/Portable_Interceptors/Bug_1559/Makefile
index b7b2ce52378..ce9bc122d11 100644
--- a/TAO/tests/Portable_Interceptors/Bug_1559/Makefile
+++ b/TAO/tests/Portable_Interceptors/Bug_1559/Makefile
@@ -11,10 +11,9 @@ ifndef TAO_ROOT
endif # ! TAO_ROOT
IDL_FILES = test
-IDL_SRC = testC testS
BIN_UNCHECKED = client server
-SRC = $(addsuffix .cpp, $(BIN_UNCHECKED) Client_ORBInitializer Server_ORBInitializer interceptors $(IDL_SRC))
+SRC = $(addsuffix .cpp, $(BIN_UNCHECKED) Client_ORBInitializer Server_ORBInitializer interceptors) $(IDL_SRC)
CLIENT_OBJS = \
testC.o \
@@ -52,17 +51,12 @@ include $(TAO_ROOT)/taoconfig.mk
# Local targets
#----------------------------------------------------------------------------
-.PRECIOUS: $(foreach ext, $(IDL_EXT), test$(ext))
-
server: $(addprefix $(VDIR),$(SERVER_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_SRVR_LIBS) $(POSTLINK)
client: $(addprefix $(VDIR),$(CLIENT_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_CLNT_LIBS) $(POSTLINK)
-realclean: clean
- -$(RM) $(foreach ext, $(IDL_EXT), test$(ext))
-
# DO NOT DELETE THIS LINE -- g++dep uses it.
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.