From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.droids-corp.org (zoll.droids-corp.org [94.23.50.67]) by dpdk.org (Postfix) with ESMTP id B478A8DA7 for ; Fri, 16 Oct 2015 21:30:51 +0200 (CEST) Received: from was59-1-82-226-113-214.fbx.proxad.net ([82.226.113.214] helo=[192.168.0.10]) by mail.droids-corp.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84) (envelope-from ) id 1ZnAii-0002aU-E1; Fri, 16 Oct 2015 21:31:17 +0200 Message-ID: <56215065.6070907@6wind.com> Date: Fri, 16 Oct 2015 21:30:45 +0200 From: Olivier MATZ User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.7.0 MIME-Version: 1.0 To: Mario Carrillo , dev@dpdk.org References: <1442608390-12537-1-git-send-email-mario.alfredo.c.arevalo@intel.com> <1444076406-30141-1-git-send-email-mario.alfredo.c.arevalo@intel.com> <1444076406-30141-6-git-send-email-mario.alfredo.c.arevalo@intel.com> In-Reply-To: <1444076406-30141-6-git-send-email-mario.alfredo.c.arevalo@intel.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v4 5/7] mk: Add rule for installing documentation 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, 16 Oct 2015 19:30:51 -0000 Hi Mario, On 10/05/2015 10:20 PM, Mario Carrillo wrote: > Add hierarchy-file support to the DPDK documentation. > > When invoking "make install-doc" documentation files will > be installed in: $(DESTDIR)/$(DOC_DIR) where > DOC_DIR=$(DESTDIR)/usr/share/doc/dpdk by default. > > You can override DOC_DIR var. > This hierarchy is based on: > http://www.freedesktop.org/software/systemd/man/file-hierarchy.html > > Signed-off-by: Mario Carrillo > --- > mk/rte.sdkinstall.mk | 14 ++++++++++++++ > mk/rte.sdkroot.mk | 6 ++++-- > 2 files changed, 18 insertions(+), 2 deletions(-) > > diff --git a/mk/rte.sdkinstall.mk b/mk/rte.sdkinstall.mk > index 628d9fb..d917329 100644 > --- a/mk/rte.sdkinstall.mk > +++ b/mk/rte.sdkinstall.mk > @@ -44,12 +44,14 @@ T=* > ifneq (,$(wildcard $(BUILD_DIR)/build/.config)) > INCLUDE_DIR ?= /usr/include/dpdk > BIN_DIR ?= /usr/bin > +DOC_DIR ?= /usr/share/doc/dpdk > HSLINKS := $(wildcard $(RTE_OUTPUT)/include/*) > BINARY_FILES := $(patsubst %.map,,$(wildcard $(RTE_OUTPUT)/app/*)) > NIC_FILES := $(wildcard $(BUILD_DIR)/tools/*.py) > BINARY_FILES += $(NIC_FILES) > LIBS := $(wildcard $(RTE_OUTPUT)/lib/*) > MODULES := $(wildcard $(RTE_OUTPUT)/kmod/*) > +DOCS := $(wildcard $(BUILD_DIR)/doc/*) > include $(BUILD_DIR)/build/.config > RTE_ARCH := $(CONFIG_RTE_ARCH:"%"=%) > RTE_EXEC_ENV := $(CONFIG_RTE_EXEC_ENV:"%"=%) > @@ -148,6 +150,18 @@ install-mod: > echo installing: $$MOD; \ > done > # > +# install documentation in /usr/share/doc/dpdk > +# bu default, DOC_DIR can be overriden. > +# small typo here (bu -> by) Regards, Olivier