summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-08-13 17:47:47 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-08-13 17:47:47 +0000
commit5b05637945dc0500efd595ff1a8e9a1b3e2d2e54 (patch)
treeef3c8e0f2ed9d49d7221c2aec41e334f47ade284
parent0d1c57d8b21554c6c06ee48b7ad4d7ba139a31ec (diff)
downloadATCD-5b05637945dc0500efd595ff1a8e9a1b3e2d2e54.tar.gz
ChangeLogTag:Tue Aug 13 10:25:36 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLog9
-rw-r--r--TAO/tests/DLL_ORB/Makefile4
2 files changed, 11 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 49828439e0c..9631af90f92 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,12 @@
+Tue Aug 13 10:25:36 2002 Ossama Othman <ossama@uci.edu>
+
+ * tests/DLL_ORB/Makefile (CLIENT_MODULE_LIB, SERVER_MODULE_LIB):
+
+ Added dependencies on the corresponding sources to these
+ targets. Without them, changes to the source files would not
+ cause a top-level "make" to rebuild the libraries built by these
+ targets.
+
Tue Aug 13 09:16:44 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/tests/Makefile.bor (DIRS):
diff --git a/TAO/tests/DLL_ORB/Makefile b/TAO/tests/DLL_ORB/Makefile
index 0a9a49a1b49..2568f68d663 100644
--- a/TAO/tests/DLL_ORB/Makefile
+++ b/TAO/tests/DLL_ORB/Makefile
@@ -48,10 +48,10 @@ client: $(addprefix $(VDIR),$(CLIENT_OBJS))
server: $(addprefix $(VDIR),$(SERVER_OBJS)) $(SHLIB)
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
-$(CLIENT_MODULE_LIB):
+$(CLIENT_MODULE_LIB): Test_Client_Module.h Test_Client_Module.cpp
$(MAKE) -f Makefile.Test_Client_Module
-$(SERVER_MODULE_LIB): $(CLIENT_MODULE_LIB)
+$(SERVER_MODULE_LIB): $(CLIENT_MODULE_LIB) Test_Server_Module.h Test_Server_Module.cpp
$(MAKE) -f Makefile.Test_Server_Module
idl_stubs realclean depend: