From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id DEE4DA054E; Sat, 15 Feb 2020 17:58:12 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 56BD4F72; Sat, 15 Feb 2020 17:58:12 +0100 (CET) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id 1FC72374 for ; Sat, 15 Feb 2020 17:58:11 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 6C72C21B0E; Sat, 15 Feb 2020 11:58:10 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Sat, 15 Feb 2020 11:58:10 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=l0YYFf+0hSuvM5RpRQOT6EPxVrS6LvuDzM+mbicskAQ=; b=RTUedSi3k+8j /PI4hiGOwOfxfQRaxgm3YHi1J30zRa2FbmIFzUBDOqxjkO1mI2hqKDLmihEqZUlH kkSeXt8AVMSq7qOuW2wPxa21BSWo1suC3WUubxQH8Bgj4+570dsttZxT9V+Bz/8/ pou9Z/gV0Mutj2E/wLzSzu3t93AY2XI= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; bh=l0YYFf+0hSuvM5RpRQOT6EPxVrS6LvuDzM+mbicsk AQ=; b=Leswp0hpNEHqQzpOMZtFq5fNxKInkPUGd2LrDBtdgjgB/w2O2pZ5cXSSC rlyhRaEhEJAHIWESLu1utCSduNekcUDmk/PHEJ0ZGlmxUHZkKA2Buv5R34VZ+eHq /RbSguU5wQraqQW+2GHm+1VJMHecjxU5sOVmsJ8QRR+CqQhTzCM/jq7imgafEy9K 52tOSWbJ54pXuIVzasMM3bnDra8ne8if4K5WynuMz9EMFu7idfrEiqoP4e/12JUW NLyT1cm1SRImW74HSIG1ovi7+Hce6BZ8+Icr1oo2Sgk1xOLO0BI7EMU+6I65iFPU uDAvAGxFdILHmHlziT1CqPikcS9zg== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedugedrjedvgdelkecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkph epjeejrddufeegrddvtdefrddukeegnecuvehluhhsthgvrhfuihiivgeptdenucfrrghr rghmpehmrghilhhfrhhomhepthhhohhmrghssehmohhnjhgrlhhonhdrnhgvth X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 9599230606E9; Sat, 15 Feb 2020 11:58:09 -0500 (EST) From: Thomas Monjalon To: Bruce Richardson Cc: dev@dpdk.org Date: Sat, 15 Feb 2020 17:58:08 +0100 Message-ID: <2052562.nHSHbJBgIm@xps> In-Reply-To: <20200117112236.5225-1-bruce.richardson@intel.com> References: <20200117112236.5225-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH 0/2] Do proper dependency tracking for doxygen X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 17/01/2020 12:22, Bruce Richardson: > When building doxygen docs as part of the build, there was no tracking > being done of the files processed, so that doxygen can be re-run if needed. > This patchset adds that tracking support, by generating a gcc-style > ".d" file for the custom targets used in the doc/api build. > > In doing so, we remove the doc directory as a custom target input path > directly, which removes a warning from meson. > > Bruce Richardson (2): > doc/api: generate dependency file for examples doc > doc/api: track header files to rebuild docs on change Applied, thanks