aboutsummaryrefslogtreecommitdiff
path: root/bin/umake
blob: e8de7ae6acf4b4fb43436d1a0a9796069fd9392c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# Keep going up the tree until we find a Makefile, and then run make(1) with
# any given args
while [ "$PWD" != / ] ; do
    for mf in makefile Makefile ; do
        [ -f "$mf" ] && exec make "$@"
    done
    cd .. || exit
done
printf >&2 'umake: No makefile found in ancestors\n'
exit 1