summaryrefslogtreecommitdiff
path: root/examples/Log_Msg
diff options
context:
space:
mode:
authordoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-10 10:26:41 +0000
committerdoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-10 10:26:41 +0000
commit5aa7fdbed0b6ec875c3ed81f683fa45f25c8be90 (patch)
treea0c5887455f2dd46b1214f26e34eba59d1c6257c /examples/Log_Msg
parentc1e88885fab4d17eebbb9eff98f99b78757a608a (diff)
downloadATCD-5aa7fdbed0b6ec875c3ed81f683fa45f25c8be90.tar.gz
Fri Nov 10 11:25:02 2000 Johnny Willemsen <jwillemsen@remedy.nl>
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>