summaryrefslogtreecommitdiff
path: root/bin/make-components
blob: a2b9c782807cd2012fcf0cc8857f397327704272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/sh
# $Id$

# Allow each ACE component to be built in a simple way, as follows:
#
# $ACE_ROOT/bin/make-components "your flags"
#
# to build libACE.$(SOEXT), libACE_OS.$(SOEXT), etc.

flags="$*"
cd $ACE_ROOT/ace
make $flags
for component in `cat $ACE_ROOT/ace/ACE_COMPONENTS.list`
do
   make $flags LIBACE=libACE_$component ACE_COMPONENTS=$component
done
exit 0