]> git.itanic.dy.fi Git - rrdd/commitdiff
Suppress excess make verbosity
authorTimo Kokkonen <kaapeli@ee.oulu.fi>
Mon, 31 Mar 2008 19:56:49 +0000 (22:56 +0300)
committerTimo Kokkonen <kaapeli@ee.oulu.fi>
Mon, 31 Mar 2008 19:56:49 +0000 (22:56 +0300)
Makefile

index 494cf255a178c6ef4855a355bff17d6dcbd27dde..86710d49f3324961246a01fefa7239a02ff4b8c5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -13,14 +13,15 @@ clean:
        rm -vf rrdd *~ *.o *.d
 
 .c.o:
-       $(CC) $(CFLAGS) -c $< -o $@
+       @echo -e "\tCC\t" $@
+       @$(CC) $(CFLAGS) -c $< -o $@
 
 %.d: %.c
-       $(CC) -MM $(CFLAGS) -c $< > $@ 
-       mv $@ $@.foo
-       cat $@.foo | sed -e s,.o,.d, > $@
-       cat $@.foo >> $@
-       rm $@.foo
+       @$(CC) -MM $(CFLAGS) -c $< > $@ 
+       @mv $@ $@.foo
+       @cat $@.foo | sed -e s,.o,.d, > $@
+       @cat $@.foo >> $@
+       @rm $@.foo
 
 TAGS:
        etags *.[ch]