From 868c136fd4515a0497d362b11ca2cf99f28a4f4a Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Wed, 17 Apr 2013 19:03:55 +0200 Subject: Made makes silent. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1e64bbe..1ea16ed 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ all: @for p in $(Projects); do \ echo ""; echo "----------------------"; \ echo "=> Building $$p"; \ - BasePath=$(BasePath) SrcPath=$(SrcPath) make -C src/$$p || exit -1; \ + BasePath=$(BasePath) SrcPath=$(SrcPath) make -s -C src/$$p || exit -1; \ done rebuild: mrproper all @@ -21,14 +21,14 @@ clean: @for p in $(Projects); do \ echo ""; echo "----------------------"; \ echo "=> Cleaning $$p"; \ - BasePath=$(BasePath) SrcPath=$(SrcPath) make -C src/$$p clean -s; \ + BasePath=$(BasePath) SrcPath=$(SrcPath) make -s -C src/$$p clean -s; \ done mrproper: @for p in $(Projects); do \ echo ""; echo "----------------------"; \ echo "=> Cleaning $$p"; \ - BasePath=$(BasePath) SrcPath=$(SrcPath) make -C src/$$p mrproper -s; \ + BasePath=$(BasePath) SrcPath=$(SrcPath) make -s -C src/$$p mrproper -s; \ done commit: mrproper -- cgit v1.2.3