diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2005-11-08 00:04:59 +0000 | 
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2005-11-08 00:04:59 +0000 | 
| commit | 5f2d553f4c5d9aa5c117ee79c47dd2e524e3dd9e (patch) | |
| tree | 677c31b399e1f91f7c0eaa0595c93fdfc220fe45 | |
| parent | f0b4463b7d29b7b22d4dcb49859cbf4acc677afb (diff) | |
make cp silent
| -rw-r--r-- | libc/stdio/Makefile.in | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/Makefile.in b/libc/stdio/Makefile.in index 1f6438f60..a928e0872 100644 --- a/libc/stdio/Makefile.in +++ b/libc/stdio/Makefile.in @@ -125,7 +125,7 @@ STDIO_NO_MULTI:=$(STDIO_CUOBJ) $(STDIO_CLOBJ)  # need this, else the other %64 files will get false rules  $(STDIO_CLSRC): $(STDIO_OUT)/%64.c : $(STDIO_DIR)/%.c -	cp $< $@ +	@cp $< $@  $(STDIO_CLOBJ): %.o : %.c  	$(compile.c) -D__DO_LARGEFILE @@ -157,4 +157,4 @@ libc-nomulti-y+=$(patsubst %.o,$(STDIO_OUT)/%.o,$(STDIO_MOBJ_NO_MULTI))  objclean-y+=stdio_objclean  stdio_objclean: -	$(RM) $(STDIO_OUT)/*.{o,os} +	$(RM) $(STDIO_OUT)/*.{o,os} $(STDIO_OUT)/*64.c  | 
