From patchwork Tue Nov 13 17:12:12 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ben Hutchings X-Patchwork-Id: 10682067 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 751981747 for ; Wed, 14 Nov 2018 08:17:15 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6C1FB2AA63 for ; Wed, 14 Nov 2018 08:17:15 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 607792B1A2; Wed, 14 Nov 2018 08:17:15 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 22FC52AA63 for ; Wed, 14 Nov 2018 08:17:15 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A8D026E4A4; Wed, 14 Nov 2018 08:16:40 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from imap1.codethink.co.uk (imap1.codethink.co.uk [176.9.8.82]) by gabe.freedesktop.org (Postfix) with ESMTPS id D777F6E373 for ; Tue, 13 Nov 2018 17:54:28 +0000 (UTC) Received: from [148.252.241.226] (helo=xylophone.i.decadent.org.uk) by imap1.codethink.co.uk with esmtpsa (Exim 4.84_2 #1 (Debian)) id 1gMcEY-0007bn-9F for ; Tue, 13 Nov 2018 17:12:14 +0000 Date: Tue, 13 Nov 2018 17:12:12 +0000 From: Ben Hutchings To: dri-devel@lists.freedesktop.org Subject: [PATCH 3/5] drm: EDID: Don't force make to be silent Message-ID: <20181113171212.jhc4znu7br5esaj4@xylophone.i.decadent.org.uk> References: <20181113171053.is24iz65egl22aw7@xylophone.i.decadent.org.uk> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20181113171053.is24iz65egl22aw7@xylophone.i.decadent.org.uk> User-Agent: NeoMutt/20170113 (1.7.2) X-Mailman-Approved-At: Wed, 14 Nov 2018 08:16:04 +0000 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP 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 --- 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 "};" >>$@