From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1678704374; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=WZR+iHGXKphymbLFCSbaxAW4Qi9Tzdje/jxY8uzlqgE=; b=GFyN38ZkQKLAgKhYgmkN/pA492lco8t9XHtLYt9ISu8uQmJrFzmgypZ5MjfWHY0auMZnGf Es5s+s2ZxH1B2FUVvQoM2AdT3oQY232va2DU+R/32r/P/FC26xXWRW2kgBhFA3//6w5Llc NYz5nJCIHxwN3/3ianYU0Jz8TTZChzc= 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) From: Jonathan Wakely 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 Content-Type: text/plain Content-Transfer-Encoding: 8bit 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 List-Id: 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 -- 2.39.2