summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-01 23:25:25 +0000
committerpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-01 23:25:25 +0000
commit2567ead15f911913449f3cb961c067a17cc65468 (patch)
tree73229da862294286c7410912c0660e8c044c5655
parent53284e215e3d3351a7d7e9c4b68f14b427fb4377 (diff)
downloadATCD-2567ead15f911913449f3cb961c067a17cc65468.tar.gz
Wed Nov 1 17:24:59 2000 Pradeep Gore <pradeep@cs.wustl.edu>
-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>
+
+