summaryrefslogtreecommitdiff
path: root/examples/Service_Configurator/IPC-tests/client/makefile.bor
blob: 8ca304c83ed0609fff7e2a8d37bed83c12ae6410 (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
#
# Makefile for building the ACE Service_Configurator IPC-tests client
#

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

CLIENTS = \
       local_dgram_client_test \
       local_stream_client_test \
       local_pipe_client_test \
       remote_stream_client_test \
       remote_thr_stream_client_test \
       remote_dgram_client_test \
       local_fifo_client_test \
       broadcast_client_test \
       local_spipe_client_test \
       remote_service_directory_test

all_clients: $(CLIENTS)

$(CLIENTS):
     $(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>