summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-07 22:14:58 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-07 22:14:58 +0000
commitcda6b3d11bfa780cc0f8ae9604986d1dfbda3bc4 (patch)
tree22ae64dca841426e391cacc1ca22bec7d33b62f7
parent6bd7bd55df12c9701c077aa5f80211fb0076347f (diff)
downloadATCD-cda6b3d11bfa780cc0f8ae9604986d1dfbda3bc4.tar.gz
ChangeLogTag:Mon Jun 7 16:13:31 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--TAO/examples/POA/DSI/Makefile4
-rw-r--r--TAO/tests/InterOp-Naming/Makefile5
-rw-r--r--TAO/tests/Param_Test/Makefile6
3 files changed, 9 insertions, 6 deletions
diff --git a/TAO/examples/POA/DSI/Makefile b/TAO/examples/POA/DSI/Makefile
index 729d7a3d4b3..bfb43678bf8 100644
--- a/TAO/examples/POA/DSI/Makefile
+++ b/TAO/examples/POA/DSI/Makefile
@@ -41,7 +41,7 @@ include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
include $(TAO_ROOT)/taoconfig.mk
-.PRECIOUS: DatabaseC.h DatabaseC.i DatabaseC.cpp DatabaseS.h DatabaseS.i DatabaseS.cpp
+.PRECIOUS: DatabaseC.h DatabaseC.i DatabaseC.cpp DatabaseS.h DatabaseS.i DatabaseS.cpp DatabaseS_T.h DatabaseS_T.i DatabaseS_T.cpp
server: $(addprefix $(VDIR),$(FILE_SVR_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
@@ -50,7 +50,7 @@ client: $(addprefix $(VDIR),$(FILE_CLT_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
realclean: clean
- -$(RM) DatabaseC.* DatabaseS.*
+ -$(RM) DatabaseC.* DatabaseS.* DatabaseS_T.*
# DO NOT DELETE THIS LINE -- g++dep uses it.
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
diff --git a/TAO/tests/InterOp-Naming/Makefile b/TAO/tests/InterOp-Naming/Makefile
index 8a0eb4a5ec6..19f0192f819 100644
--- a/TAO/tests/InterOp-Naming/Makefile
+++ b/TAO/tests/InterOp-Naming/Makefile
@@ -84,7 +84,10 @@ INS_test_server:$(addprefix $(VDIR),$(SIMPLE_SERVER_OBJS))
INS_test_client:$(addprefix $(VDIR),$(SIMPLE_CLIENT_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
-.PRECIOUS: INSC.cpp
+.PRECIOUS: $(foreach ext, $(IDL_EXT), INS$(ext))
+
+realclean: clean
+ -$(RM) $(foreach ext, $(IDL_EXT), INS$(ext))
#----------------------------------------------------------------------------
# Dependencies
diff --git a/TAO/tests/Param_Test/Makefile b/TAO/tests/Param_Test/Makefile
index d8aa4772588..d67703155f1 100644
--- a/TAO/tests/Param_Test/Makefile
+++ b/TAO/tests/Param_Test/Makefile
@@ -93,9 +93,9 @@ include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
#include $(ACE_ROOT)/include/makeinclude/rules.bin.GNU
include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
-override TAO_IDLFLAGS += -hc Cli.h -hs Ser.h -hT Ser_T.h \
- -cs Cli.cpp -ci Cli.i \
- -ss Ser.cpp -sT Ser_T.cpp
+override TAO_IDLFLAGS += -hc Cli.h -cs Cli.cpp -ci Cli.i \
+ -hs Ser.h -ss Ser.cpp -si Ser.i \
+ -hT Ser_T.h -sT Ser_T.cpp -st Ser_T.i
TSS_ORB_FLAG = #-DTAO_HAS_TSS_ORBCORE
CPPFLAGS += -I$(TAO_ROOT) $(TSS_ORB_FLAG)