summaryrefslogtreecommitdiff
path: root/tests/RMCast/Makefile.bor
diff options
context:
space:
mode:
Diffstat (limited to 'tests/RMCast/Makefile.bor')
-rw-r--r--tests/RMCast/Makefile.bor41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/RMCast/Makefile.bor b/tests/RMCast/Makefile.bor
new file mode 100644
index 00000000000..4ea559be0c3
--- /dev/null
+++ b/tests/RMCast/Makefile.bor
@@ -0,0 +1,41 @@
+#----------------------------------------------------------------------------
+#
+# $Id$
+#
+# Makefile for building the ACE RMCast tests
+#
+# Author: Christopher Kohlhoff <chris@kohlhoff.com>
+#
+#----------------------------------------------------------------------------
+
+!include <$(ACE_ROOT)\include\makeinclude\make_flags.bor>
+
+TESTS = \
+ RMCast_Fragment_Test \
+ RMCast_Membership_Test \
+ RMCast_Reassembly_Test \
+ RMCast_Reordering_Test \
+ RMCast_Retransmission_Test \
+ RMCast_UDP_Best_Effort_Test
+
+all_tests: $(TESTS)
+
+$(TESTS):
+ $(MAKE) -fMakefile.bor -DNAME=$@ $(MAKE_FLAGS) $(BINDIR)\$@.exe
+
+OBJFILES = $(OBJDIR)\$(NAME).obj
+
+CFLAGS = \
+ $(ACE_CFLAGS) \
+ $(ACE_RMCAST_CFLAGS) \
+ -I..
+
+CPPDIR = .;..
+
+LIBFILES = \
+ $(ACE_LIB) \
+ $(ACE_RMCAST_LIB)
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>
+
+