diff options
author | Alex AUVOLAT <alexis211@gmail.com> | 2013-04-17 19:03:55 +0200 |
---|---|---|
committer | Alex AUVOLAT <alexis211@gmail.com> | 2013-04-17 19:03:55 +0200 |
commit | 868c136fd4515a0497d362b11ca2cf99f28a4f4a (patch) | |
tree | 39d959f2a250b379c20383e3c99e0406fef74fbc | |
parent | 0dadfa903b7a780b4f88155a6eae7855890b797e (diff) | |
download | TCE-868c136fd4515a0497d362b11ca2cf99f28a4f4a.tar.gz TCE-868c136fd4515a0497d362b11ca2cf99f28a4f4a.zip |
Made makes silent.
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |