summaryrefslogtreecommitdiff
path: root/examples/Map_Manager/makefile.bor
blob: 02acd82833a8ece386131e19d21aee14d54e9d58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
 # Makefile for building the test_hash_map_manager ace examples
 #

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

 TESTS = \
        test_hash_map_manager

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>