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 E0A5B5681 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:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,605,1437462000"; d="scan'208";a="653983828" Received: from mcarril6-mobl.zpn.intel.com ([10.219.26.120]) by orsmga003.jf.intel.com with ESMTP; 28 Sep 2015 17:01:04 -0700 From: Mario Carrillo To: dev@dpdk.org Date: Mon, 28 Sep 2015 19:00:57 -0500 Message-Id: <1443484863-18652-3-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 2/8] 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: Tue, 29 Sep 2015 00:01:06 -0000 Add hierarchy-file support to the DPDK app files, when invoking "make install-bin" app files will be installed in: $(DESTDIR)/usr/bin 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 | 4 ++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/mk/rte.sdkinstall.mk b/mk/rte.sdkinstall.mk index 3ec344e..44e770d 100644 --- a/mk/rte.sdkinstall.mk +++ b/mk/rte.sdkinstall.mk @@ -44,7 +44,9 @@ ifeq (,$(wildcard $(BUILD_DIR)/build/.config)) T=* else INCLUDE_DIR := $(DESTDIR)/usr/include/dpdk +BIN_DIR := $(DESTDIR)/usr/bin HSLINKS := $(wildcard $(RTE_OUTPUT)/include/*) +BINARY_FILES := $(patsubst %.map,,$(wildcard $(RTE_OUTPUT)/app/*)) endif endif @@ -89,7 +91,17 @@ install-headers: cp -rf $$HEADER ${INCLUDE_DIR}; \ echo installing: $$HEADER; \ done - +# +# install app files in /usr/bin +# +.PHONY: install-bin +install-bin: + @echo ================== Installing app files + @[ -d $(INCLUDE_BIN) ] || mkdir -p $(INCLUDE_BIN) + @for BIN_FILE in ${BINARY_FILES}; do \ + cp -rf $$BIN_FILE ${BIN_DIR}; \ + echo installing: $$BIN_FILE; \ + done # # uninstall: remove all built sdk # 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