From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f171.google.com (mail-we0-f171.google.com [74.125.82.171]) by dpdk.org (Postfix) with ESMTP id 3DFD458FA for ; Fri, 19 Jul 2013 16:19:42 +0200 (CEST) Received: by mail-we0-f171.google.com with SMTP id q55so74438wes.30 for ; Fri, 19 Jul 2013 07:20:03 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:subject:date:message-id:x-mailer:in-reply-to:references :in-reply-to:references:x-gm-message-state; bh=s6/NiQEh84BNReaUP8pgB171FJH847w8jeCI0kCzrR0=; b=mhQb9nzKc2qja8DuR1huZUMDvdfqDOUnL0E0NU/0aEzgvpak2OyD2DQZu6AS9gKcuC wcUSVLT++nkohyWfVrD3E3kuKFRgbCciPCsQgZYDTTIFd+DP7jYWI1f5CCbYOORWVyIy iT1rUJlh2G1tWb+QlNx/ZrxpdhquJNV0VbaNAk6Tf9zrmN0jhHJGMsILYFmq2t+PZFTy y7l1OD9n7rpMtlSX3L30/B2Her8MHsEs4rnhEdxM96fs8yqxLY/04tTf1MiINVHaEW+d LxsdaxssGB/jIJV9RUdLhRB73qa5LURymSwAuQAbeX5xkH6do9jY08SCWjkZ2DvAhpLH Ygfg== X-Received: by 10.180.183.180 with SMTP id en20mr22544423wic.58.1374243602997; Fri, 19 Jul 2013 07:20:02 -0700 (PDT) Received: from 6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPSA id s19sm48788328wik.11.2013.07.19.07.20.00 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 19 Jul 2013 07:20:02 -0700 (PDT) Received: by 6wind.com (sSMTP sendmail emulation); Fri, 19 Jul 2013 16:19:59 +0200 From: Thomas Monjalon To: dev@dpdk.org Date: Fri, 19 Jul 2013 16:19:52 +0200 Message-Id: <5450d495ffb15907a61e26e9640fc0170cc2ae4a.1374243470.git.thomas.monjalon@6wind.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: In-Reply-To: References: X-Gm-Message-State: ALoCoQkNxLVdTlgfN7tz1yV8vu2i7o9CuGjoCt9EL7b1/XoPhIUqZhRLKVAoBdBDZ+/GVF7a3yMX Subject: [dpdk-dev] [PATCH 2/2] mk: insert version number in doxygen config X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jul 2013 14:19:42 -0000 The parameter PROJECT_NUMBER is used in the HTML header via the template variable $projectnumber. Signed-off-by: Thomas Monjalon --- mk/rte.sdkdoc.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mk/rte.sdkdoc.mk b/mk/rte.sdkdoc.mk index 96eec69..d0cda7a 100644 --- a/mk/rte.sdkdoc.mk +++ b/mk/rte.sdkdoc.mk @@ -54,6 +54,8 @@ htmlapi: htmlapi-clean @echo 'doxygen for API...' $(Q)mkdir -p $(RTE_OUTPUT)/doc/html $(Q)(cat $(RTE_SDK)/doc/doxy-api.conf && \ + printf 'PROJECT_NUMBER = ' && \ + $(MAKE) -rR showversion && \ echo OUTPUT_DIRECTORY = $(RTE_OUTPUT)/doc && \ echo HTML_OUTPUT = html/api && \ echo GENERATE_HTML = YES && \ -- 1.7.10.4