simple make wrapper to give quiet output. (more like nan-makefiles)

This commit is contained in:
Campbell Barton 2010-12-20 11:21:29 +00:00
parent 97197b54cf
commit 71202e26ff
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#!/bin/bash
# filters CMake output to be more like nan-makefiles
FILTER="^Scanning \|Linking \(C\|CXX\) static library \|Built target "
make $@ | grep --line-buffered -v "$FILTER" | sed -e 's/^.*\// /'
echo "Build Done"