summaryrefslogtreecommitdiff
path: root/examples/RMCast/Send_File/Makefile.bor
blob: 489f89b29c49bfb8cb312132eaf2e2ef94e8b800 (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
#
 # Makefile for building the RMCast Send_File ace examples
 #

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

 TESTS = \
        Receiver \
        Sender

all_tests: $(TESTS)

LIBFILES = \
	$(ACE_LIB) \
        $(ACE_RMCAST_LIB)

$(TESTS):
	$(MAKE) -fMakefile.bor -DNAME=$@ $(MAKE_FLAGS) $(BINDIR)\$@.exe

OBJFILES = $(OBJDIR)\$(NAME).obj

CFLAGS = $(ACE_CFLAGS)

CPPDIR = .

LIBFILES = \
        $(ACE_LIB) \
        $(ACE_RMCAST_LIB)


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