summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex AUVOLAT <alexis211@gmail.com>2013-04-17 19:03:55 +0200
committerAlex AUVOLAT <alexis211@gmail.com>2013-04-17 19:03:55 +0200
commit868c136fd4515a0497d362b11ca2cf99f28a4f4a (patch)
tree39d959f2a250b379c20383e3c99e0406fef74fbc
parent0dadfa903b7a780b4f88155a6eae7855890b797e (diff)
downloadTCE-868c136fd4515a0497d362b11ca2cf99f28a4f4a.tar.gz
TCE-868c136fd4515a0497d362b11ca2cf99f28a4f4a.zip
Made makes silent.
-rw-r--r--Makefile6
1 files 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