From 70537f83abe747b56f73b364ffdf174dc80f255c Mon Sep 17 00:00:00 2001 From: Qingping Hou Date: Sat, 25 Oct 2014 19:57:31 -0400 Subject: [PATCH] build: supress make clean output --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 426712d32..db01096f5 100644 --- a/Makefile +++ b/Makefile @@ -100,17 +100,18 @@ coverage: $(INSTALL_DIR)/koreader/.luacov +$$(($$(grep -nm1 Summary luacov.report.out|cut -d: -f1)-1)) \ luacov.report.out -.PHONY: test - fetchthirdparty: git submodule init git submodule sync git submodule update $(MAKE) -C $(KOR_BASE) fetchthirdparty +VERBOSE ?= @ +Q = $(VERBOSE:1=) clean: rm -rf $(INSTALL_DIR) - $(MAKE) -C $(KOR_BASE) clean + $(Q:@=@echo 'MAKE -C base clean'; &> /dev/null) \ + $(MAKE) -C $(KOR_BASE) clean # Don't bundle launchpad on touch devices.. ifeq ($(TARGET), kindle-legacy) @@ -204,3 +205,5 @@ pot: po: $(MAKE) -i -C l10n bootstrap pull + +.PHONY: test