aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-09-02 05:11:00 +0200
committerMattias Andrée <maandree@operamail.com>2015-09-02 05:11:00 +0200
commit55375504b8426ce1ac164e7b985487c67ab4ad90 (patch)
treedc02eda221b796296b45bd847c2db7dc5e3d86b2
parentadd incorrection headers that redirect with a warning (diff)
downloadslibc-55375504b8426ce1ac164e7b985487c67ab4ad90.tar.gz
slibc-55375504b8426ce1ac164e7b985487c67ab4ad90.tar.bz2
slibc-55375504b8426ce1ac164e7b985487c67ab4ad90.tar.xz
silence obj/deps.mk rule
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-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/&#' $@