diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-09-10 12:41:09 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-09-10 12:41:09 +0200 |
commit | 7f8c04c036ff5d7768ec4b53e0409d666b20d59b (patch) | |
tree | def1dea099e25ebfea8a9deb9df44a6a9af0b87e /src/arch/esp8266 | |
parent | caecdb12209b5be67824a19591fbb3949896972e (diff) |
Makefile: Add missing ${QUIET} statements
Diffstat (limited to 'src/arch/esp8266')
-rw-r--r-- | src/arch/esp8266/Makefile.inc | 7 |
1 files changed, 3 insertions, 4 deletions
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 |