From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id DA694924C for ; Mon, 5 Oct 2015 22:20:12 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 05 Oct 2015 13:20:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,640,1437462000"; d="scan'208";a="804228104" Received: from mcarril6-mobl.zpn.intel.com ([10.219.24.17]) by fmsmga001.fm.intel.com with ESMTP; 05 Oct 2015 13:20:08 -0700 From: Mario Carrillo To: dev@dpdk.org Date: Mon, 5 Oct 2015 15:20:01 -0500 Message-Id: <1444076406-30141-3-git-send-email-mario.alfredo.c.arevalo@intel.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1444076406-30141-1-git-send-email-mario.alfredo.c.arevalo@intel.com> 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> Subject: [dpdk-dev] [PATCH v4 2/7] mk: Add rule for installing app files 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: Mon, 05 Oct 2015 20:20:13 -0000 Add hierarchy-file support to the DPDK app files, nic bind file and cpu layout file. When invoking "make install-bin" app files will be installed in: $(DESTDIR)/$(BIN_DIR) where BIN_DIR=/usr/bin by default. You can override BIN_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 | 16 ++++++++++++++++ mk/rte.sdkroot.mk | 4 ++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/mk/rte.sdkinstall.mk b/mk/rte.sdkinstall.mk index f016171..cfcdb25 100644 --- a/mk/rte.sdkinstall.mk +++ b/mk/rte.sdkinstall.mk @@ -43,7 +43,11 @@ ifndef T T=* ifneq (,$(wildcard $(BUILD_DIR)/build/.config)) INCLUDE_DIR ?= /usr/include/dpdk +BIN_DIR ?= /usr/bin HSLINKS := $(wildcard $(RTE_OUTPUT)/include/*) +BINARY_FILES := $(patsubst %.map,,$(wildcard $(RTE_OUTPUT)/app/*)) +NIC_FILES := $(wildcard $(BUILD_DIR)/tools/*.py) +BINARY_FILES += $(NIC_FILES) endif endif @@ -90,6 +94,18 @@ install-headers: echo installing: $$HEADER; \ done # +# install app files in /usr/bin by default +# BIN_DIR can be overridden. +# +.PHONY: install-bin +install-bin: + @echo ================== Installing app files + @[ -d $(DESTDIR)/$(BIN_DIR) ] || mkdir -p $(DESTDIR)/$(BIN_DIR) + @for BIN_FILE in ${BINARY_FILES}; do \ + cp -rf $$BIN_FILE ${DESTDIR}/${BIN_DIR}; \ + echo installing: $$BIN_FILE; \ + done +# # uninstall: remove all built sdk # UNINSTALL_TARGETS := $(addsuffix _uninstall,\ diff --git a/mk/rte.sdkroot.mk b/mk/rte.sdkroot.mk index 8477a2b..24eaa60 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 uninstall -install install-headers uninstall: +.PHONY: install install-headers install-bin uninstall +install install-headers install-bin uninstall: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkinstall.mk $@ .PHONY: doc help -- 2.1.0