diff options
-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 |