summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-03-21 00:42:20 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-03-21 00:42:20 +0000
commit7dfc75d1dcb422c38f06e4dfb3c1c7b5aa51e882 (patch)
treef55788439de16e539064a97db5f3e5678d9787ed
parent258ba6ba4df4fa2c9c86440dba0a0899a0659f74 (diff)
downloadATCD-7dfc75d1dcb422c38f06e4dfb3c1c7b5aa51e882.tar.gz
ChangeLogTag:Sat Mar 20 18:39:20 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog11
-rw-r--r--TAO/orbsvcs/tests/Security/MT_SSLIOP/Makefile2
-rw-r--r--TAO/orbsvcs/tests/Security/Secure_Invocation/Makefile2
-rw-r--r--TAO/orbsvcs/tests/Security/SecurityLevel1/Makefile2
-rw-r--r--TAO/tests/RTScheduling/Scheduling_Interceptor/Makefile2
-rw-r--r--TAO/tests/RTScheduling/VoidData/Makefile2
6 files changed, 21 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 18b13e8fb79..48088a3b56c 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,14 @@
+Sat Mar 20 18:39:20 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * orbsvcs/tests/Security/MT_SSLIOP/Makefile:
+ * orbsvcs/tests/Security/Secure_Invocation/Makefile:
+ * orbsvcs/tests/Security/SecurityLevel1/Makefile:
+ * tests/RTScheduling/Scheduling_Interceptor/Makefile:
+ * tests/RTScheduling/VoidData/Makefile:
+
+ Added dependencies on the IDL_SRC for the for client and server
+ objects.
+
Sat Mar 20 08:41:19 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* examples/Kokyu_dsrt_schedulers/FP_Scheduler.cpp:
diff --git a/TAO/orbsvcs/tests/Security/MT_SSLIOP/Makefile b/TAO/orbsvcs/tests/Security/MT_SSLIOP/Makefile
index 74f76395c1f..e8b83095315 100644
--- a/TAO/orbsvcs/tests/Security/MT_SSLIOP/Makefile
+++ b/TAO/orbsvcs/tests/Security/MT_SSLIOP/Makefile
@@ -47,6 +47,8 @@ include $(TAO_ROOT)/taoconfig.mk
.PRECIOUS: $(foreach ext, $(IDL_EXT), test$(ext))
+$(CLIENT_OBJS) $(SERVER_OBJS): $(IDL_SRC)
+
server: $(addprefix $(VDIR),$(SERVER_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(TAO_SRVR_LIBS) $(POSTLINK)
diff --git a/TAO/orbsvcs/tests/Security/Secure_Invocation/Makefile b/TAO/orbsvcs/tests/Security/Secure_Invocation/Makefile
index d0ba3559544..a12b477e84a 100644
--- a/TAO/orbsvcs/tests/Security/Secure_Invocation/Makefile
+++ b/TAO/orbsvcs/tests/Security/Secure_Invocation/Makefile
@@ -71,6 +71,8 @@ SRVR_LIBS += \
.PRECIOUS: $(foreach file, $(IDL_FILES), $(foreach ext, $(IDL_EXT), $(file)$(ext))))
+$(CLIENT_OBJS) $(SERVER_OBJS): $(IDL_SRC)
+
realclean: clean
-$(RM) $(foreach file, $(IDL_FILES), $(foreach ext, $(IDL_EXT), $(file)$(ext)))
diff --git a/TAO/orbsvcs/tests/Security/SecurityLevel1/Makefile b/TAO/orbsvcs/tests/Security/SecurityLevel1/Makefile
index 2591874e94d..22c46b130a1 100644
--- a/TAO/orbsvcs/tests/Security/SecurityLevel1/Makefile
+++ b/TAO/orbsvcs/tests/Security/SecurityLevel1/Makefile
@@ -75,6 +75,8 @@ SRVR_LIBS += -lTAO_Security $(TAO_SRVR_LIBS) -lssl -lcrypto
realclean: clean
-$(RM) $(foreach file, $(IDL_FILES), $(foreach ext, $(IDL_EXT), $(file)$(ext)))
+$(CLIENT_OBJS) $(SERVER_OBJS): $(IDL_SRC)
+
server: $(addprefix $(VDIR),$(SERVER_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(SRVR_LIBS) $(POSTLINK)
diff --git a/TAO/tests/RTScheduling/Scheduling_Interceptor/Makefile b/TAO/tests/RTScheduling/Scheduling_Interceptor/Makefile
index 6308ec7eb8c..fe902aa395d 100644
--- a/TAO/tests/RTScheduling/Scheduling_Interceptor/Makefile
+++ b/TAO/tests/RTScheduling/Scheduling_Interceptor/Makefile
@@ -49,6 +49,8 @@ include $(TAO_ROOT)/taoconfig.mk
.PRECIOUS: $(foreach ext, $(IDL_EXT), test$(ext))
+$(CLIENT_OBJS) $(SERVER_OBJS): $(IDL_SRC)
+
Scheduler_Interceptor_Client: $(addprefix $(VDIR),$(CLIENT_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(RT_TAO_CLNT_LIBS) $(POSTLINK)
diff --git a/TAO/tests/RTScheduling/VoidData/Makefile b/TAO/tests/RTScheduling/VoidData/Makefile
index 5d540affd81..0f5b1a31555 100644
--- a/TAO/tests/RTScheduling/VoidData/Makefile
+++ b/TAO/tests/RTScheduling/VoidData/Makefile
@@ -53,6 +53,8 @@ include $(TAO_ROOT)/taoconfig.mk
.PRECIOUS: $(foreach ext, $(IDL_EXT), test$(ext))
+$(CLIENT_OBJS): $(IDL_SRC)
+
VoidData: $(addprefix $(VDIR),$(CLIENT_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(RT_TAO_CLNT_LIBS) $(POSTLINK)