summaryrefslogtreecommitdiff
path: root/examples/C++NPv1/Makefile
blob: 45958682b3b5a22188251d252127ce7122012279 (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
#----------------------------------------------------------------------------
#	$Id$
#
#	Makefile for the example programs in "C++ Network Programming,
#	Vol. 1, Resolving Complexity Using Patterns and ACE"
#----------------------------------------------------------------------------

#----------------------------------------------------------------------------
#	Local macros
#----------------------------------------------------------------------------

all :  Logging_Client \
       Iterative_Logging_Server \
       Process_Per_Connection_Logging_Server \
       Thread_Per_Connection_Logging_Server

Logging_Client :
	$(MAKE) -f Logging_Client.mak

Iterative_Logging_Server :
	$(MAKE) -f Iterative_Logging_Server.mak

Process_Per_Connection_Logging_Server :
	$(MAKE) -f Process_Per_Connection_Logging_Server.mak

RT_Thread_Per_Connection_Logging_Server :
	$(MAKE) -f RT_Thread_Per_Connection_Logging_Server.mak

Thread_Per_Connection_Logging_Server :
	$(MAKE) -f Thread_Per_Connection_Logging_Server.mak