summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_1395_Regression/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Bug_1395_Regression/Makefile')
-rw-r--r--TAO/orbsvcs/tests/Bug_1395_Regression/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/Bug_1395_Regression/Makefile b/TAO/orbsvcs/tests/Bug_1395_Regression/Makefile
new file mode 100644
index 00000000000..6abffaea28d
--- /dev/null
+++ b/TAO/orbsvcs/tests/Bug_1395_Regression/Makefile
@@ -0,0 +1,21 @@
+#----------------------------------------------------------------------------
+# GNU Workspace
+#----------------------------------------------------------------------------
+
+# $Id$
+
+include $(ACE_ROOT)/include/makeinclude/macros.GNU
+TARGETS_NESTED := $(TARGETS_NESTED:.nested=)
+MFILES = \
+ Makefile.Bug_1395_Server \
+ Makefile.Bug_1395_Client
+
+$(TARGETS_NESTED):
+ifneq (Windows,$(findstring Windows,$(OS)))
+ @for file in $(MFILES); do \
+ $(MAKE) -f `basename $$file` -C `dirname $$file` $(@); \
+ done
+else
+ -@cmd /c "$(MAKE) -f Makefile.Bug_1395_Server -C . $(@)"
+ -@cmd /c "$(MAKE) -f Makefile.Bug_1395_Client -C . $(@)"
+endif