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 C7E5A8E56 for ; Thu, 1 Oct 2015 02:11:53 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP; 30 Sep 2015 17:11:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,614,1437462000"; d="scan'208";a="800956972" Received: from mcarril6-mobl.zpn.intel.com ([10.219.17.82]) by fmsmga001.fm.intel.com with ESMTP; 30 Sep 2015 17:11:53 -0700 From: Mario Carrillo To: dev@dpdk.org Date: Wed, 30 Sep 2015 19:11:48 -0500 Message-Id: <1443658313-11045-4-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 3/8] mk: Add rule for installing libraries 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:54 -0000 Add hierarchy-file support to the DPDK libraries, when invoking "make install-lib" libraries will be installed in: $(DESTDIR)/$(LIB_DIR) if architecture is 64 bits then LIB_DIR=/usr/lib64 else LIB_DIR=/usr/lib by default, you can override LIB_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 | 21 +++++++++++++++++++++ mk/rte.sdkroot.mk | 4 ++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/mk/rte.sdkinstall.mk b/mk/rte.sdkinstall.mk index 7d7c2c9..25b8122 100644 --- a/mk/rte.sdkinstall.mk +++ b/mk/rte.sdkinstall.mk @@ -47,6 +47,14 @@ INCLUDE_DIR ?= /usr/include/dpdk BIN_DIR ?= /usr/bin HSLINKS := $(wildcard $(RTE_OUTPUT)/include/*) BINARY_FILES := $(patsubst %.map,,$(wildcard $(RTE_OUTPUT)/app/*)) +LIBS := $(wildcard $(RTE_OUTPUT)/lib/*) +include $(BUILD_DIR)/build/.config +RTE_ARCH := $(CONFIG_RTE_ARCH:"%"=%) +ifeq ($(RTE_ARCH),x86_64) +LIB_DIR ?= /usr/lib64 +else +LIB_DIR ?= /usr/lib +endif endif endif @@ -105,6 +113,19 @@ install-bin: echo installing: $$BIN_FILE; \ done # +# if architecture is 64 bits install in /usr/lib64 +# else /usr/lib by default +# LIB_DIR can be overridden. +# +.PHONY: install-lib +install-lib: + @echo ================== Installing libraries + @[ -d $(DESTDIR)/$(LIB_DIR) ] || mkdir -p $(DESTDIR)/$(LIB_DIR) + @for LIB in ${LIBS}; do \ + cp -rf $$LIB ${DESTDIR}/${LIB_DIR}; \ + echo installing: $$LIB; \ + done +# # uninstall: remove all built sdk # UNINSTALL_TARGETS := $(addsuffix _uninstall,\ diff --git a/mk/rte.sdkroot.mk b/mk/rte.sdkroot.mk index 24eaa60..7a72c9b 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 install-headers install-bin uninstall -install install-headers install-bin uninstall: +.PHONY: install install-headers install-bin install-lib uninstall +install install-headers install-bin install-lib uninstall: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkinstall.mk $@ .PHONY: doc help -- 2.1.0