From cafcd5d4368e57f162a641ed3f4835ecb5a6d391 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Thu, 28 Feb 2002 14:09:04 +0000 Subject: Initial revision --- ccompile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 ccompile (limited to 'ccompile') diff --git a/ccompile b/ccompile new file mode 100755 index 0000000..f5086ad --- /dev/null +++ b/ccompile @@ -0,0 +1,9 @@ +#!/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 $? -- cgit v1.2.3