summaryrefslogtreecommitdiff
path: root/Makefile.bor
diff options
context:
space:
mode:
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>