summaryrefslogtreecommitdiff
path: root/examples/Threads/Makefile.bor
blob: dd56aebc0a6c3988a2b717b01406adff6d2829e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#
# Makefile for building the ACE Threads examples
#

!include <$(ACE_ROOT)\include\makeinclude\make_flags.bor>

TESTS = \
        auto_event \
        barrier1 \
        barrier2 \
        cancel \
        future1 \
        future2 \
        manual_event \
        process_manager \
        process_mutex \
        process_semaphore \
        reader_writer \
        recursive_mutex \
        task_one \
        task_two \
        task_three \
        task_four \
        task_five \
        thread_manager \
        thread_pool \
        thread_specific \
        token \
        tss1 \
        tss2 \
        wfmo

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>