blob: 490e1b77ead19eefa34abe84d29bc071783445d5 (
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/share/colormake/colormake.pl $SIZE
- exit $?
|