Cool,<br><br>You might want to put a &#39;^&#39; after each \|, if that is how grep regex handles it.  I&#39;ve tended toward egrep which is more perl like when doing more complicated expressions.  Color is probably lost since it is no longer a tty.<br>
<br>Juan<br><br><div class="gmail_quote">On Mon, Dec 20, 2010 at 3:56 PM, Campbell Barton <span dir="ltr">&lt;<a href="mailto:ideasman42@gmail.com">ideasman42@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
@Michael Wild. good point about threaded builds, so I take back the<br>
bit about &quot;Entering directory, then filenames only&quot;, nevertheless.<br>
some way to reduce flooding the console when rebuilding a single file<br>
would be much appreciated.<br>
<br>
@Juan, from your suggestion, I now use this.<br>
<br>
---<br>
#!/bin/bash<br>
# filters CMake output to be more like nan-makefiles<br>
<br>
FILTER=&quot;^Scanning \|Linking \(C\|CXX\) static library \|Built target &quot;<br>
make $@ | grep --line-buffered -v &quot;$FILTER&quot; | sed  -e &#39;s/^.*\//  /&#39;<br>
echo &quot;Build Done&quot;<br>
---<br>
<br>
Jesper Eskilson, agree supporting make -s would be good to have.<br>
<br>
On Mon, Dec 20, 2010 at 10:05 AM, Jesper Eskilson<br>
&lt;<a href="mailto:jesper.eskilson@iar.com">jesper.eskilson@iar.com</a>&gt; wrote:<br>
&gt; On 12/20/2010 01:01 AM, Campbell Barton wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hi, I&#39;m STILL trying to have CMake makefiles replace Blender&#39;s hand<br>
&gt;&gt; crafted makefiles.<br>
&gt;&gt;<br>
&gt;&gt; Now the main sticking point with 2 other developers is they don&#39;t like<br>
&gt;&gt; CMakes output, as its overly verbose.<br>
&gt;&gt;<br>
&gt;&gt; I realize CMake doesn&#39;t need to bend to the whim of all users but<br>
&gt;&gt; wondering if we could have something like  RULE_BRIEF_OUTPUT<br>
&gt;&gt;<br>
&gt;&gt; Rather then printing progress and full path for all files it could<br>
&gt;&gt; skip percentage and use a relative path for each C file.<br>
&gt;&gt;<br>
&gt;&gt; I can try submitting a patch but would first like to know if this<br>
&gt;&gt; would be acceptable.<br>
&gt;<br>
&gt; I&#39;ve submitted a bugreport about this:<br>
&gt; <a href="http://www.cmake.org/Bug/view.php?id=7062" target="_blank">http://www.cmake.org/Bug/view.php?id=7062</a>. It was submitted almost two years<br>
&gt; ago, so I&#39;m not sure it is getting very much attention by the CMake people.<br>
&gt;<br>
&gt; --<br>
&gt; Jesper Eskilson<br>
&gt; Developer<br>
&gt; IAR Systems<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the CMake FAQ at:<br>
&gt; <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
&gt;<br>
<br>
<br>
<br>
--<br>
- Campbell<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the CMake FAQ at: <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
</blockquote></div><br>