summaryrefslogtreecommitdiff
path: root/llbuild
diff options
context:
space:
mode:
authorLauri Leukkunen <lle@rahina.org>2009-01-15 16:51:41 +0200
committerLauri Leukkunen <lle@rahina.org>2009-01-15 16:51:41 +0200
commit7774caae00f90356dc6f94d0a3a7fc7439bd6a4e (patch)
tree3b0f6efc1fd8d764ad94e324e47248018fb144d7 /llbuild
parentd90cd7751661bbb0bcaebdf851a089a54330969e (diff)
Quiet install target
Less noise makes it easier to spot when something's amiss. Signed-off-by: Lauri Leukkunen <lle@rahina.org>
Diffstat (limited to 'llbuild')
-rw-r--r--llbuild/Makefile.include4
1 files changed, 2 insertions, 2 deletions
diff --git a/llbuild/Makefile.include b/llbuild/Makefile.include
index c870847..d8f4605 100644
--- a/llbuild/Makefile.include
+++ b/llbuild/Makefile.include
@@ -117,8 +117,8 @@ built-in.o:: %.o
define ll_clean
- rm -rf $(CLEAN_FILES)
- find . -name "*.[oasd]" -o -name ".*.d" -o -name "*.*~" -o -name "*~" -o -name "*.lock" | xargs rm -rf
+ $(Q)rm -rf $(CLEAN_FILES)
+ $(Q)find . -name "*.[oasd]" -o -name ".*.d" -o -name "*.*~" -o -name "*~" -o -name "*.lock" | xargs rm -rf
endef
endif