Commit 7f8c04c0 authored by Daniel Friesel's avatar Daniel Friesel
Browse files

Makefile: Add missing ${QUIET} statements

parent caecdb12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -344,7 +344,7 @@ randconfig: Kconfig
	${QUIET}script/randconfig

clean: arch_clean
	rm -f build/system.elf
	${QUIET}rm -f build/system.elf

help: arch_help
	@echo
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ program: build/system.hex
	avrdude -p ${MCU} -c usbasp -U flash:w:build/system.hex

arch_clean:
	rm -f ${OBJECTS} build/system.hex
	${QUIET}rm -f ${OBJECTS} build/system.hex

monitor:
	screen ${SERIAL_PORT} 115200
+3 −4
Original line number Diff line number Diff line
@@ -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
+1 −2
Original line number Diff line number Diff line
@@ -133,8 +133,7 @@ program: build/system.hex
	-w build/system.hex -v -g -z '[VCC]'

arch_clean:
	${QUIET}rm -f ${OBJECTS}
	${QUIET}rm -f build/system.hex
	${QUIET}rm -f ${OBJECTS} build/system.hex

monitor:
	${QUIET}screen /dev/${SERIAL_PORT} 115200
+1 −2
Original line number Diff line number Diff line
@@ -156,8 +156,7 @@ program: build/system.hex
	-w build/system.hex -v -g -z '[VCC]'

arch_clean:
	${QUIET}rm -f ${OBJECTS}
	${QUIET}rm -f build/system.hex
	${QUIET}rm -f ${OBJECTS} build/system.hex

monitor:
	${QUIET}screen /dev/${SERIAL_PORT} 115200
Loading