Project

General

Profile

1
#!/bin/bash
2
# Runs a make target on all inputs at once.
3
# Creates a job in the calling shell for each process.
4
# Must be run from the root svn directory.
5

    
6
with_all_main ()
7
{
8
    local self="${BASH_SOURCE[0]}"
9
    local selfDir="$(dirname -- "$self")"
10
    
11
    # Was run without initial ".", or with insufficient parameters
12
    if test "${BASH_LINENO[1]}" = 0 -o "$#" -lt 1; then
13
        echo "Usage: . $self make_target [vars...] (note initial \".\")"\
14
        |fold -s >&2
15
        return 2
16
    fi
17
    
18
    for input in inputs/*/; do
19
        eval "make ${input}$* &"
20
        disown -h "$(jobs|tail -1|"$selfDir/jobspecs")" # ignore SIGHUP
21
        sleep 2 # wait for initial output so that outputs don't become jumbled
22
    done
23
}
24
with_all_main "$@"
(63-63/65)