diff options
Diffstat (limited to 'Makefile')
-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 |