From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 559388E5A for ; Thu, 1 Oct 2015 02:11:54 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP; 30 Sep 2015 17:11:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,614,1437462000"; d="scan'208";a="800956982" Received: from mcarril6-mobl.zpn.intel.com ([10.219.17.82]) by fmsmga001.fm.intel.com with ESMTP; 30 Sep 2015 17:11:54 -0700 From: Mario Carrillo To: dev@dpdk.org Date: Wed, 30 Sep 2015 19:11:50 -0500 Message-Id: <1443658313-11045-6-git-send-email-mario.alfredo.c.arevalo@intel.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1443658313-11045-1-git-send-email-mario.alfredo.c.arevalo@intel.com> References: <1442608390-12537-1-git-send-email-mario.alfredo.c.arevalo@intel.com> <1443658313-11045-1-git-send-email-mario.alfredo.c.arevalo@intel.com> Cc: pmatilai@redhat.com‎ Subject: [dpdk-dev] [PATCH v3 5/8] 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: Thu, 01 Oct 2015 00:11:55 -0000 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 dff1e4d..5a2fd40 100644 --- a/mk/rte.sdkinstall.mk +++ b/mk/rte.sdkinstall.mk @@ -45,10 +45,12 @@ T=* else 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/*)) 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:"%"=%) @@ -147,6 +149,18 @@ install-mod: echo installing: $$MOD; \ done # +# install documentation in /usr/share/doc/dpdk +# bu default, DOC_DIR can be overriden. +# +.PHONY: install-doc +install-doc: + @echo ================== Installing documentation + @[ -d $(DESTDIR)/$(DOC_DIR) ] || mkdir -p $(DESTDIR)/$(DOC_DIR) + @for DOC in ${DOCS}; do \ + cp -rf $$DOC ${DESTDIR}/${DOC_DIR}; \ + echo installing: $$DOC; \ + done +# # uninstall: remove all built sdk # UNINSTALL_TARGETS := $(addsuffix _uninstall,\ diff --git a/mk/rte.sdkroot.mk b/mk/rte.sdkroot.mk index e652218..43f937e 100644 --- a/mk/rte.sdkroot.mk +++ b/mk/rte.sdkroot.mk @@ -97,8 +97,10 @@ test fast_test ring_test mempool_test perf_test coverage: testall: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdktestall.mk $@ -.PHONY: install install-headers install-bin install-lib install-mod uninstall -install install-headers install-bin install-lib install-mod uninstall: +.PHONY: install install-headers install-bin install-lib install-mod \ +install-doc uninstall +install install-headers install-bin install-lib install-mod install-doc \ +uninstall: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkinstall.mk $@ .PHONY: doc help -- 2.1.0