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 <[email protected]>
---
 Documentation/EDID/Makefile | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

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 "};" >>$@
-- 
Ben Hutchings, Software Developer                         Codethink Ltd
https://www.codethink.co.uk/                 Dale House, 35 Dale Street
                                     Manchester, M1 2HF, United Kingdom


_______________________________________________
dri-devel mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to