aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 11c9f20..aaaf03b 100644
--- a/Makefile
+++ b/Makefile
@@ -100,8 +100,8 @@ obj/%.o:
# Generate list of file dependencies for object files.
obj/deps.mk: Makefile $(HEADERS) $(SOURCES)
@mkdir -p obj
- find src | grep '\.c$$' | xargs $(CC) -MM $(MMFLAGS) > $@
- sed -i 's#^[^ :]*\.o: src\([^ ]*\)/[^ /]*\.c#obj\1/&#' $@
+ @find src | grep '\.c$$' | xargs $(CC) -MM $(MMFLAGS) > $@
+ @sed -i 's#^[^ :]*\.o: src\([^ ]*\)/[^ /]*\.c#obj\1/&#' $@