diff mbox series

[3/5] drm: EDID: Don't force make to be silent

Message ID 20181113171212.jhc4znu7br5esaj4@xylophone.i.decadent.org.uk (mailing list archive)
State New, archived
Headers show
Series Fixes and additions to EDID generation | expand

Commit Message

Ben Hutchings Nov. 13, 2018, 5:12 p.m. UTC
Hiding all commands is unhelpful unless there's some way to override
it (e.g. Kbuild's V=1).  The -s option is available for those who like
it.

Signed-off-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
---
 Documentation/EDID/Makefile | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
diff mbox series

Patch

diff --git a/Documentation/EDID/Makefile b/Documentation/EDID/Makefile
index 17763ca3f12b..966fceb58566 100644
--- a/Documentation/EDID/Makefile
+++ b/Documentation/EDID/Makefile
@@ -10,17 +10,17 @@  CODE	:= $(patsubst %.S, %.c, $(SOURCES))
 all:	$(BIN) $(IHEX) $(CODE)
 
 clean:
-	@rm -f *.o *.bin.ihex *.bin *.c
+	rm -f *.o *.bin.ihex *.bin *.c
 
 %.o:	%.S
-	@cc -c $^
+	cc -c $^
 
 %.bin:	%.o
-	@objcopy -Obinary $^ $@
+	objcopy -Obinary $^ $@
 
 %.bin.ihex:	%.o
-	@objcopy -Oihex $^ $@
-	@dos2unix $@ 2>/dev/null
+	objcopy -Oihex $^ $@
+	dos2unix $@ 2>/dev/null
 
 %.c:	%.bin
-	@echo "{" >$@; hexdump -f hex $^ >>$@; echo "};" >>$@
+	echo "{" >$@; hexdump -f hex $^ >>$@; echo "};" >>$@