From 65d4098d8e7bf731564b66605d78e639dbfcd4fa Mon Sep 17 00:00:00 2001 From: Wilco Baan Hofman Date: Sun, 5 Aug 2012 03:28:21 +0200 Subject: [PATCH] Update makefile to be more silent and distclean removes tags file. --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index ab6c21a..012bf61 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,15 @@ CC := gcc all: - bin/waf build + @bin/waf build clean: - bin/waf clean + @bin/waf clean distclean: - bin/waf distclean + @bin/waf distclean + @rm tags ctags: - ctags `find -name \*.[ch]` + @ctags `find -name \*.[ch]`