From 64e7c26f46a86e956246911f173cc8cb26dcfdf2 Mon Sep 17 00:00:00 2001 From: John Vogel Date: Fri, 13 May 2016 23:09:28 -0400 Subject: [PATCH] Makefile: remove verbosity from rm commands --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 84a3ced..2ee081b 100644 --- a/Makefile +++ b/Makefile @@ -70,8 +70,8 @@ $(WORK)/kernel7-$(KERNEL_VERSION).img: $(WORK)/zImage-$(KERNEL_VERSION) image: $(WORK)/kernel7-$(KERNEL_VERSION).img image-clean: - rm -vf $(WORK)/zImage-$(KERNEL_VERSION) - rm -vf $(WORK)/kernel7-$(KERNEL_VERSION).img + rm -f $(WORK)/zImage-$(KERNEL_VERSION) + rm -f $(WORK)/kernel7-$(KERNEL_VERSION).img if [ -d $(WORK)/linux-$(KERNEL_VERSION)/.config ]; then \ cd $(WORK)/linux-$(KERNEL_VERSION) && \ export PATH=$(CROSSTOOLS)/bin:$$PATH && \ @@ -80,7 +80,7 @@ image-clean: fi image-distclean: image-clean - rm -vrf $(WORK)/linux-$(KERNEL_VERSION) + rm -rf $(WORK)/linux-$(KERNEL_VERSION) $(WORK)/dtb-$(KERNEL_VERSION): $(WORK)/linux-$(KERNEL_VERSION) cd $(WORK)/linux-$(KERNEL_VERSION) && \ @@ -100,8 +100,8 @@ $(WORK)/dtb-$(KERNEL_VERSION).tar.xz: $(WORK)/dtb-$(KERNEL_VERSION) dtb: $(WORK)/dtb-$(KERNEL_VERSION).tar.xz dtb-clean: - rm -vf $(WORK)/dtb-$(KERNEL_VERSION).tar.xz - rm -vrf $(WORK)/dtb-$(KERNEL_VERSION) + rm -f $(WORK)/dtb-$(KERNEL_VERSION).tar.xz + rm -rf $(WORK)/dtb-$(KERNEL_VERSION) dtb-distclean: dtb-clean @@ -122,8 +122,8 @@ $(WORK)/modules-$(KERNEL_VERSION).tar.xz: $(WORK)/modules-$(KERNEL_VERSION) modules: $(WORK)/modules-$(KERNEL_VERSION).tar.xz modules-clean: - rm -vf $(WORK)/modules-$(KERNEL_VERSION).tar.xz - rm -vrf $(WORK)/modules-$(KERNEL_VERSION) + rm -f $(WORK)/modules-$(KERNEL_VERSION).tar.xz + rm -rf $(WORK)/modules-$(KERNEL_VERSION) modules-distclean: modules-clean @@ -134,7 +134,7 @@ $(WORK)/System.map-$(KERNEL_VERSION): $(WORK)/zImage-$(KERNEL_VERSION) map: $(WORK)/System.map-$(KERNEL_VERSION) map-clean: - rm -vf $(WORK)/System.map-$(KERNEL_VERSION) + rm -f $(WORK)/System.map-$(KERNEL_VERSION) map-distclean: map-clean -- 2.26.2