From 7f8c04c036ff5d7768ec4b53e0409d666b20d59b Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 10 Sep 2020 12:41:09 +0200 Subject: Makefile: Add missing ${QUIET} statements --- src/arch/esp8266/Makefile.inc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/arch/esp8266') diff --git a/src/arch/esp8266/Makefile.inc b/src/arch/esp8266/Makefile.inc index 89c244a..8d0a085 100644 --- a/src/arch/esp8266/Makefile.inc +++ b/src/arch/esp8266/Makefile.inc @@ -70,10 +70,10 @@ endif build/system.ar: ${OBJECTS} ${QUIET}mkdir -p build - ${AR} cru $@ ${OBJECTS} + ${QUIET}${AR} cru $@ ${OBJECTS} build/system.elf: build/system.ar - ${CC} -L${SDK_BASE}/lib -T${SDK_BASE}/lib/eagle.app.v6-derf.ld ${LDFLAGS} \ + ${QUIET}${CC} -L${SDK_BASE}/lib -T${SDK_BASE}/lib/eagle.app.v6-derf.ld ${LDFLAGS} \ -Wl,--gc-sections \ -Wl,--start-group -lc -lgcc -lhal -lpp -lphy -lnet80211 -llwip -lwpa \ -lmain $< -Wl,--end-group -o $@ @@ -88,8 +88,7 @@ program: build/0x00000.bin build/0x40000.bin ${ESPTOOL} -p ${SERIAL_PORT} write_flash 0x00000 build/0x00000.bin 0x40000 build/0x40000.bin #-fm dout arch_clean: - rm -f ${OBJECTS} - rm -f build/system.ar + ${QUIET}rm -f ${OBJECTS} build/system.ar monitor: screen ${SERIAL_PORT} 115200 -- cgit v1.2.3