summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-01-12 01:25:30 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-01-12 01:25:30 +0000
commit67957ff23acb4e30ad454e96e1476480ec1d6cab (patch)
tree1d1046db53a4fbab789894ca82dc0add9e189a03 /Makefile
parent36fd069f1ee82b017f870cacb54984a5d6b62946 (diff)
downloadATCD-67957ff23acb4e30ad454e96e1476480ec1d6cab.tar.gz
ChangeLogTag:Thu Jan 11 17:24:30 2001 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f8657bcc9f4..df9ce9ca7a2 100644
--- a/Makefile
+++ b/Makefile
@@ -67,6 +67,21 @@ clone:
(clone -s $(ACE_ROOT)/$$dir $$dir) \
done
+CORE_DIRS= \
+ ace \
+ apps/gperf/src \
+ TAO/tao \
+ TAO/TAO_IDL \
+ TAO/orbsvcs/orbsvcs \
+ TAO/orbsvcs/Naming_Service
+
+.PHONY: Core
+Core:
+ @for dir in $(CORE_DIRS); \
+ do \
+ $(MAKE) -C $$dir; \
+ done
+
#### NOTE: The following comments describe how to create kits.
#### It's intended for use by ACE+TAO developers and
#### maintainers only. ACE+TAO users need not be concerned