From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50917) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ey7mJ-0006h7-Ee for qemu-devel@nongnu.org; Mon, 19 Mar 2018 23:17:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ey7mI-0008Bg-KY for qemu-devel@nongnu.org; Mon, 19 Mar 2018 23:17:35 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:56990 helo=mx1.redhat.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ey7mI-0008BJ-FO for qemu-devel@nongnu.org; Mon, 19 Mar 2018 23:17:34 -0400 Date: Tue, 20 Mar 2018 05:17:29 +0200 From: "Michael S. Tsirkin" Message-ID: <1521515720-612046-22-git-send-email-mst@redhat.com> References: <1521515720-612046-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1521515720-612046-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL v2 21/50] Makefile: add target to print generated files List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , =?utf-8?Q?Marc-Andr=C3=A9?= Lureau , Daniel =?utf-8?B?UC4gQmVycmFuZ8Op?= , Markus Armbruster , Eric Blake , Gerd Hoffmann This is helpful for automatic code analysis. Signed-off-by: Michael S. Tsirkin --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 677a54b..f799390 100644 --- a/Makefile +++ b/Makefile @@ -1045,6 +1045,9 @@ endif include $(SRC_PATH)/tests/docker/Makefile.include include $(SRC_PATH)/tests/vm/Makefile.include +printgen: + @echo $(GENERATED_FILES) + .PHONY: help help: @echo 'Generic targets:' -- MST