aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2014-12-26 17:37:36 +0100
committerLorenz Meier <lm@inf.ethz.ch>2014-12-26 17:37:36 +0100
commitd04f1fde50b62938f08cc64f3d915f38917c46b7 (patch)
tree852a59136bb721f324cf17e0e57de9aeca8c082c /Makefile
parent5c51adf5f79266de2b483c2461babd4d673cfffb (diff)
downloadpx4-firmware-d04f1fde50b62938f08cc64f3d915f38917c46b7.tar.gz
px4-firmware-d04f1fde50b62938f08cc64f3d915f38917c46b7.tar.bz2
px4-firmware-d04f1fde50b62938f08cc64f3d915f38917c46b7.zip
Suppress nothing to do messages from make for clean targets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 7 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 0f68e7b4b..905a60a3b 100644
--- a/Makefile
+++ b/Makefile
@@ -245,14 +245,16 @@ tests:
#
.PHONY: clean
clean:
- $(Q) $(RMDIR) $(BUILD_DIR)*.build > /dev/null
- $(Q) $(REMOVE) $(IMAGE_DIR)*.px4 > /dev/null
+ @echo > /dev/null
+ $(Q) $(RMDIR) $(BUILD_DIR)*.build
+ $(Q) $(REMOVE) $(IMAGE_DIR)*.px4
.PHONY: distclean
distclean: clean
- $(Q) $(REMOVE) $(ARCHIVE_DIR)*.export > /dev/null
- $(Q) $(MAKE) -C $(NUTTX_SRC) -r $(MQUIET) distclean > /dev/null
- $(Q) (cd $(NUTTX_SRC)/configs && $(FIND) . -maxdepth 1 -type l -delete) > /dev/null
+ @echo > /dev/null
+ $(Q) $(REMOVE) $(ARCHIVE_DIR)*.export
+ $(Q) $(MAKE) -C $(NUTTX_SRC) -r $(MQUIET) distclean
+ $(Q) (cd $(NUTTX_SRC)/configs && $(FIND) . -maxdepth 1 -type l -delete)
#
# Print some help text