blob: f5086ad3a827013e5a4d8da4932f70926e7a7995 (
plain)
- #!/bin/sh
- #
- # Wrapper around make, to colorize it's output and pipe through less.
- # Jumps to the first gcc error that occurs during the build process.
- #
- SIZE=`/bin/stty size`
- $@ 2>&1 | /usr/bin/colormake.pl $SIZE
- exit $?
|