summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/echo/Makefile.bor
blob: 7d12d4bcc9d190fbd0711be9ac5daaef1206bd87 (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 Echo example
# 

!ifdef DEBUG
DEBUG_FLAG = -DDEBUG
!endif

!ifdef STATIC
STATIC_FLAG = -DSTATIC
!endif  

!ifdef PASCAL
PASCAL_FLAG = -DPASCAL
!endif

FLAGS = $(DEBUG_FLAG) $(STATIC_FLAG) $(PASCAL_FLAG)

all:
	$(MAKE) -f Echo_Client.bor $(FLAGS)
	$(MAKE) -f Echo_Server.bor $(FLAGS)