blob: c9d4323933fbd6e1ef96d152788e6a1315e452cc (
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
34
35
36
37
|
#
# Makefile for building ACE
#
!ifndef BUILD
BUILD = all
!endif
!if $(BUILD) == all
DIRS = \
ace \
examples \
performance-tests \
tests \
ACEXML \
ACEXML\tests
!elif $(BUILD) == nightlybuild
DIRS = \
ace \
apps \
netsvcs \
tests \
examples \
performance-tests \
ACEXML \
ACEXML\tests \
TAO
!else
!error Please set your BUILD variable to either "nightlybuild" or "all".
!endif
!include <$(ACE_ROOT)\include\makeinclude\recurse.bor>
|