From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BBCD7138359 for ; Thu, 29 Oct 2020 20:15:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0894E096C; Thu, 29 Oct 2020 20:15:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B4737E096C for ; Thu, 29 Oct 2020 20:15:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0A514335C8E for ; Thu, 29 Oct 2020 20:15:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 862DD2CA for ; Thu, 29 Oct 2020 20:15:03 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1604002401.4c1595dae95a6a3bd9e29c8b09ca7f979ea344b6.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: / X-VCS-Repository: proj/catalyst X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 4c1595dae95a6a3bd9e29c8b09ca7f979ea344b6 X-VCS-Branch: master Date: Thu, 29 Oct 2020 20:15:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a69967fa-8964-4143-8cc4-8638122a9c3c X-Archives-Hash: bb50fdd64afcda24f70fe7d30dc5793a commit: 4c1595dae95a6a3bd9e29c8b09ca7f979ea344b6 Author: W. Trevor King tremily us> AuthorDate: Mon Dec 16 04:49:38 2013 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Oct 29 20:13:21 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=4c1595da Makefile: Cleanup doc/subarches.generated.xml Since its addition in fa940f7 (Migrate man page to Asciidoc, generate list of subarches, add Makefile including "dist" target, 2011-06-24), doc/make_subarch_table_guidexml.py has also generated an XML version of the supported subarches. Add the XML file to DOC_SIDE_EFFECTS so it gets removed by `make clean`. Signed-off-by: Matt Turner gentoo.org> Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c937df15..b359e8b7 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ MAN_PAGES = $(patsubst doc/%.txt,files/%,$(MAN_PAGE_SOURCES)) MAN_PAGE_INCLUDES = doc/subarches.generated.txt doc/targets.generated.txt DOC_SOURCES = $(filter-out $(MAN_PAGE_SOURCES) $(MAN_PAGE_INCLUDES),$(wildcard doc/*.txt)) DOCS = $(patsubst doc/%.txt,files/%.html,$(DOC_SOURCES)) -DOC_SIDE_EFFECTS = files/docbook-xsl.css +DOC_SIDE_EFFECTS = files/docbook-xsl.css doc/subarches.generated.xml EXTRA_DIST = $(MAN_PAGES) $(DOCS) $(DOC_SIDE_EFFECTS) GENERATED_FILES = $(MAN_PAGES) $(MAN_PAGE_INCLUDES) $(DOCS) $(DOC_SIDE_EFFECTS) @@ -27,7 +27,7 @@ $(MAN_PAGES): files/%: doc/%.txt doc/asciidoc.conf Makefile catalyst | files files/catalyst.1: doc/subarches.generated.txt | files files/catalyst-spec.5: doc/subarches.generated.txt doc/targets.generated.txt | files -doc/subarches.generated.txt: $(wildcard arch/*.toml) doc/make_subarch_table_guidexml.py +doc/subarches.generated.txt doc/subarches.generated.xml: $(wildcard arch/*.toml) doc/make_subarch_table_guidexml.py ./doc/make_subarch_table_guidexml.py doc/targets.generated.txt: doc/make_target_table.py $(wildcard catalyst/targets/*.py)