From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 74839138247 for ; Mon, 16 Dec 2013 04:49:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20F7EE0A62; Mon, 16 Dec 2013 04:49:46 +0000 (UTC) Received: from qmta02.westchester.pa.mail.comcast.net (qmta02.westchester.pa.mail.comcast.net [76.96.62.24]) by pigeon.gentoo.org (Postfix) with ESMTP id 938FCE0A62 for ; Mon, 16 Dec 2013 04:49:45 +0000 (UTC) Received: from omta10.westchester.pa.mail.comcast.net ([76.96.62.28]) by qmta02.westchester.pa.mail.comcast.net with comcast id 24hy1n0060cZkys514plDs; Mon, 16 Dec 2013 04:49:45 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta10.westchester.pa.mail.comcast.net with comcast id 24pj1n00F152l3L3W4pk7d; Mon, 16 Dec 2013 04:49:45 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id 22E42D6C660; Sun, 15 Dec 2013 20:49:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387169383; bh=U+ILvhp6Na+I4yfs2UOyBoXf73eprj8W+GfKPhZQ81U=; h=From:To:Cc:Subject:Date; b=fh28rzI2Wv4/Eje44N0VaSLyfYxiMkUTgzknrF4o+Io+l6OaxVkNQDoCpocd38QOG pYicDhcWb+BQ04tv8fe4bYOtodSv1CJ9ZgSiV6HtiZlAjHLBFhSKVvrddE3rFMHVNr D956jIn13Z3gqhS0OdF/dvdx44V45+mTYl8oUxI4= From: "W. Trevor King" To: Catalyst Cc: "W. Trevor King" Subject: [gentoo-catalyst] [PATCH] Makefile: Cleanup doc/subarches.generated.xml Date: Sun, 15 Dec 2013 20:49:38 -0800 Message-Id: <091a6955b8a95308adf58cb6ef3d0ba1e05fc08c.1387169465.git.wking@tremily.us> X-Mailer: git-send-email 1.8.3.2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1387169385; bh=v28JVU661pwXQeLq1feaQK111DL7IdWlAaBoblYrRRg=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=qXxt69WUngkNSL7+2NVzFJKnyRcgtyGwJboTgR3i+cND28vPQv06UEBruqyxC3NZm iopRFuR1HJbfydkWNJZPjqI9NN7IFYVN5Bb0DyDRWRAz5y6GOtqwtq7IZdZ9wsLca8 4HaeNhlvq6JOve3SF0EWA5ifBwBu0gEOu1T/OC1M3MqWis6x0qKgnJhdnonPqRq9qA Y1HfGb6VttkWq4WKM2ZHdVODBXg518qzyxwjSLZNkBy0XvUFdd5pHK5HN30O+QE/eD HPfeW4mkJuHfUfImiAVOhrAJGU4WJVY1dSF599uujJCp96NXE0S1asawQ34VrGVcI6 vw6UwTFJ6OTng== Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: 6ea1fe62-72b3-4c3b-a5af-37e1b55efae5 X-Archives-Hash: 7845389368ce569dbab89901e3a255c9 From: "W. Trevor King" 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`. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 98accbe..6002f97 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) @@ -24,7 +24,7 @@ $(MAN_PAGES): files/%: doc/%.txt doc/asciidoc.conf Makefile catalyst files/catalyst.1: doc/subarches.generated.txt files/catalyst-spec.5: doc/subarches.generated.txt doc/targets.generated.txt -doc/subarches.generated.txt: $(wildcard arch/*.py) doc/make_subarch_table_guidexml.py +doc/subarches.generated.txt doc/subarches.generated.xml: $(wildcard arch/*.py) doc/make_subarch_table_guidexml.py ./doc/make_subarch_table_guidexml.py doc/targets.generated.txt: doc/make_target_table.py $(wildcard modules/*_target.py) -- 1.8.4