summaryrefslogtreecommitdiff
path: root/examples/Log_Msg
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Log_Msg')
-rw-r--r--examples/Log_Msg/makefile.bor25
1 files changed, 25 insertions, 0 deletions
diff --git a/examples/Log_Msg/makefile.bor b/examples/Log_Msg/makefile.bor
new file mode 100644
index 00000000000..2f78c01c4be
--- /dev/null
+++ b/examples/Log_Msg/makefile.bor
@@ -0,0 +1,25 @@
+#
+ # Makefile for building the log_ms ace examples
+ #
+
+ !include <$(ACE_ROOT)\include\makeinclude\make_flags.bor>
+
+ TESTS = \
+ test_callback \
+ test_log_msg \
+ test_ostream
+
+all_tests: $(TESTS)
+
+$(TESTS):
+ $(MAKE) -fMakefile.bor -DNAME=$@ $(MAKE_FLAGS) $(BINDIR)\$@.exe
+
+OBJFILES = $(OBJDIR)\$(NAME).obj
+
+CFLAGS = $(ACE_CFLAGS)
+
+CPPDIR = .
+
+LIBFILES = $(ACE_LIB)
+
+!include <$(ACE_ROOT)\include\makeinclude\build_exe.bor>