summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1330_Regression/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1330_Regression/Makefile')
-rw-r--r--TAO/tests/Bug_1330_Regression/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/TAO/tests/Bug_1330_Regression/Makefile b/TAO/tests/Bug_1330_Regression/Makefile
new file mode 100644
index 00000000000..422514319c0
--- /dev/null
+++ b/TAO/tests/Bug_1330_Regression/Makefile
@@ -0,0 +1,21 @@
+# $Id$
+
+#----------------------------------------------------------------------------
+# GNU Workspace
+#----------------------------------------------------------------------------
+
+include $(ACE_ROOT)/include/makeinclude/macros.GNU
+TARGETS_NESTED := $(TARGETS_NESTED:.nested=)
+MFILES = \
+ Makefile.Bug_1330_Server \
+ Makefile.Bug_1330_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_1330_Server -C . $(@)"
+ -@cmd /c "$(MAKE) -f Makefile.Bug_1330_Client -C . $(@)"
+endif