From eebdfe589601da1a7a8436a90a868ee52d6cd16e Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sat, 23 Oct 2004 19:49:20 +0000 Subject: [PATCH] Make clean quieter. llvm-svn: 17191 --- llvm/tools/llee/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/llvm/tools/llee/Makefile b/llvm/tools/llee/Makefile index 534f7905b549..fdf3389f28ae 100644 --- a/llvm/tools/llee/Makefile +++ b/llvm/tools/llee/Makefile @@ -16,8 +16,9 @@ all:: llee llee: $(TOOLDIR)/llee $(TOOLDIR)/llee: Makefile - echo exec env LD_PRELOAD=$(TOOLDIR)/libexecve$(SHLIBEXT) $$\* > $@ - chmod u+x $@ + @$(ECHO) Constructing llee shell script + $(VERB) echo exec env LD_PRELOAD=$(TOOLDIR)/libexecve$(SHLIBEXT) $$\* > $@ + $(VERB) chmod u+x $@ clean:: - rm -f $(TOOLDIR)/llee + $(VERB) rm -f $(TOOLDIR)/llee