summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-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