File: make-components

package info (click to toggle)
ace 8.0.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 46,932 kB
  • sloc: cpp: 341,621; perl: 31,868; sh: 1,963; python: 529; yacc: 511; xml: 330; lex: 158; lisp: 116; makefile: 85; csh: 20; ansic: 19; tcl: 5
file content (15 lines) | stat: -rwxr-xr-x 360 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh
# 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