From patchwork Mon Mar 13 10:46:07 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 66292 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id E233E385B51B for ; Mon, 13 Mar 2023 10:46:41 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E233E385B51B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1678704401; bh=WZR+iHGXKphymbLFCSbaxAW4Qi9Tzdje/jxY8uzlqgE=; h=To:Cc:Subject:Date:In-Reply-To:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From:Reply-To:From; b=KdMpoHg4IkCY0WdLm7LS5ngIFqBZa0rC3DmNRim5wksHmRkBCgfq9bozIQK0CynoL YOnXVYtuHbw2sweZXOlm0BFlP8znvUa3vPa3/lze7mOZXh597aqBmIpcrImVCjiv00 KYtSb5C7CQb6o3X0f4Ifz2yvVWl/a6ixe9xYVRS4= X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id 9CEDC3858CDB for ; Mon, 13 Mar 2023 10:46:14 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 9CEDC3858CDB Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-500-3NW3LM0dMf-0w3poEGCrrA-1; Mon, 13 Mar 2023 06:46:09 -0400 X-MC-Unique: 3NW3LM0dMf-0w3poEGCrrA-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id BA8553C0F185; Mon, 13 Mar 2023 10:46:08 +0000 (UTC) Received: from localhost (unknown [10.33.36.96]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8412E202701E; Mon, 13 Mar 2023 10:46:08 +0000 (UTC) To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Cc: Sandra Loosemore , Jonny Grant Subject: [committed] libstdc++: Refer to documentation hacking docs from Makefile Date: Mon, 13 Mar 2023 10:46:07 +0000 Message-Id: <20230313104607.2545130-1-jwakely@redhat.com> In-Reply-To: References: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=unavailable autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Jonathan Wakely via Gcc-patches From: Jonathan Wakely Reply-To: Jonathan Wakely Errors-To: gcc-patches-bounces+patchwork=sourceware.org@gcc.gnu.org Sender: "Gcc-patches" I've pushed this to trunk, so that it's easier to find the docs on maintaining the docs. -- >8 -- pick fdcba7a9088 libstdc++: Update copyright year in FAQ pick 6d8325681ef libstdc++: Regenerate HTML docs libstdc++-v3/ChangeLog: * doc/Makefile.am: Add comment referring to documentation. * doc/Makefile.in: Regenerate. --- libstdc++-v3/doc/Makefile.am | 2 ++ libstdc++-v3/doc/Makefile.in | 2 ++ 2 files changed, 4 insertions(+) diff --git a/libstdc++-v3/doc/Makefile.am b/libstdc++-v3/doc/Makefile.am index cc18b61cf55..8371441c62e 100644 --- a/libstdc++-v3/doc/Makefile.am +++ b/libstdc++-v3/doc/Makefile.am @@ -24,6 +24,8 @@ include $(top_srcdir)/fragment.am # Documentation Overview # +# See ./xml/manual/documentation_hacking.xml for full details. +# # There are two main input materials for libstdc++ documentation. # The first is the doxygen markup in libstdc++ sources, which is a # reference to the API. And the second is the manual, via docbook markup in diff --git a/libstdc++-v3/doc/Makefile.in b/libstdc++-v3/doc/Makefile.in index db5e81a7d60..21ad8557f7a 100644 --- a/libstdc++-v3/doc/Makefile.in +++ b/libstdc++-v3/doc/Makefile.in @@ -393,6 +393,8 @@ AM_CPPFLAGS = $(GLIBCXX_INCLUDES) $(CPPFLAGS) # Documentation Overview # +# See ./xml/manual/documentation_hacking.xml for full details. +# # There are two main input materials for libstdc++ documentation. # The first is the doxygen markup in libstdc++ sources, which is a # reference to the API. And the second is the manual, via docbook markup in