view more/for-each-target.sh @ 1174:5061606337d0

Add "make" to the default static list, for native-compiler tarball portability. (If you haven't got make working, it's hard to build it.)
author Rob Landley <rob@landley.net>
date Sun, 25 Jul 2010 14:29:01 -0500
parents 300e6d919d86
children dadbb8873a36
line wrap: on
line source

#!/bin/bash

# Iterate through every target architecture, running rest of command line
# on each $TARGET.

# If $FORK is set, run them in parallel with filtered output.

. sources/functions.sh || exit 1

[ -z "${ARCHES}" ] &&
  ARCHES="$(cd sources/targets/; ls | grep -v '^hw-')"

for TARGET in $ARCHES
do
  maybe_fork "$* | maybe_quiet"
done

wait