summaryrefslogtreecommitdiff
path: root/Makefile.bor
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-12 02:12:25 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-07-12 02:12:25 +0000
commitbc592c902f9352b07dccbfd73371a8e6e4f3d513 (patch)
tree61729e5f8aace1ec128b76cd628dcdf34aa598ff /Makefile.bor
parent3256654f02cc4f3315cf4897e40411709c7641ef (diff)
downloadATCD-bc592c902f9352b07dccbfd73371a8e6e4f3d513.tar.gz
ChangeLogTag:Thu Jul 11 21:09:36 2002 Nanbor Wang <nanbor@cs.wustl.edu>
Diffstat (limited to 'Makefile.bor')
-rw-r--r--Makefile.bor24
1 files changed, 24 insertions, 0 deletions
diff --git a/Makefile.bor b/Makefile.bor
index 81598db9af1..c9d4323933f 100644
--- a/Makefile.bor
+++ b/Makefile.bor
@@ -2,6 +2,12 @@
# Makefile for building ACE
#
+!ifndef BUILD
+BUILD = all
+!endif
+
+!if $(BUILD) == all
+
DIRS = \
ace \
examples \
@@ -10,4 +16,22 @@ DIRS = \
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>