Fix a bunch of 80col violations that arose from the Create API change. Tweak makefile...
[oota-llvm.git] / Makefile.rules
index e28ccf187aa494fe0d074e3e9207fda60d30fe47..55d4d1b703823b83e09868ce393fce31e4379911 100644 (file)
@@ -1738,10 +1738,17 @@ endif
 endif
 
 check-line-length:
-       @egrep -n '.{81}' $(Sources)
+       @echo searching for overlength lines in files: $(Sources)
+       @echo
+       @echo
+       @egrep -n '.{81}' $(Sources) /dev/null
 
 check-for-tabs:
-       @egrep -n '     ' $(Sources)
+       @echo searching for tabs in files: $(Sources)
+       @echo
+       @echo
+       @egrep -n '     ' $(Sources) /dev/null
+
 check-footprint:
        @ls -l $(LibDir) | awk '\
          BEGIN { sum = 0; } \