From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 954C53787 for ; Tue, 29 Sep 2015 02:01:05 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP; 28 Sep 2015 17:01:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,605,1437462000"; d="scan'208";a="653983813" Received: from mcarril6-mobl.zpn.intel.com ([10.219.26.120]) by orsmga003.jf.intel.com with ESMTP; 28 Sep 2015 17:01:03 -0700 From: Mario Carrillo To: dev@dpdk.org Date: Mon, 28 Sep 2015 19:00:56 -0500 Message-Id: <1443484863-18652-2-git-send-email-mario.alfredo.c.arevalo@intel.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1443484863-18652-1-git-send-email-mario.alfredo.c.arevalo@intel.com> References: <1442608390-12537-1-git-send-email-mario.alfredo.c.arevalo@intel.com> <1443484863-18652-1-git-send-email-mario.alfredo.c.arevalo@intel.com> Cc: pmatilai@redhat.com‎ Subject: [dpdk-dev] [PATCH v2 1/8] mk: Add rule for installing headers 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: Tue, 29 Sep 2015 00:01:06 -0000 Add hierarchy-file support to the DPDK headers, when invoking "make install-headers" headers will be installed in: $(DESTDIR)/usr/include/dpdk This hierarchy is based on: http://www.freedesktop.org/software/systemd/man/file-hierarchy.html Signed-off-by: Mario Carrillo --- mk/rte.sdkinstall.mk | 17 +++++++++++++++++ mk/rte.sdkroot.mk | 4 ++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/mk/rte.sdkinstall.mk b/mk/rte.sdkinstall.mk index 86c98a5..3ec344e 100644 --- a/mk/rte.sdkinstall.mk +++ b/mk/rte.sdkinstall.mk @@ -40,7 +40,12 @@ endif # target name or a name containing jokers "*". Example: # x86_64-native-*-gcc ifndef T +ifeq (,$(wildcard $(BUILD_DIR)/build/.config)) T=* +else +INCLUDE_DIR := $(DESTDIR)/usr/include/dpdk +HSLINKS := $(wildcard $(RTE_OUTPUT)/include/*) +endif endif # @@ -72,6 +77,18 @@ install: $(INSTALL_TARGETS) echo "Using local configuration"; \ fi $(Q)$(MAKE) all O=$(BUILD_DIR)/$* +# +# install headers in /usr/include/dpdk +# +.PHONY: install-headers +install-headers: + @echo ================== Installing headers + @[ -d $(INCLUDE_DIR) ] || mkdir -p $(INCLUDE_DIR) + @for HSLINK in ${HSLINKS}; do \ + HEADER=$$(readlink -f $$HSLINK); \ + cp -rf $$HEADER ${INCLUDE_DIR}; \ + echo installing: $$HEADER; \ + done # # uninstall: remove all built sdk diff --git a/mk/rte.sdkroot.mk b/mk/rte.sdkroot.mk index e8423b0..8477a2b 100644 --- a/mk/rte.sdkroot.mk +++ b/mk/rte.sdkroot.mk @@ -97,8 +97,8 @@ test fast_test ring_test mempool_test perf_test coverage: testall: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdktestall.mk $@ -.PHONY: install uninstall -install uninstall: +.PHONY: install install-headers uninstall +install install-headers uninstall: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkinstall.mk $@ .PHONY: doc help -- 2.1.0