From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 801658E6A for ; Fri, 30 Oct 2015 02:47:44 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga101.fm.intel.com with ESMTP; 29 Oct 2015 18:47:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,217,1444719600"; d="scan'208";a="590712295" Received: from mcarril6-mobl.amr.corp.intel.com (HELO mcarril6-mobl.zpn.intel.com) ([10.219.25.105]) by FMSMGA003.fm.intel.com with ESMTP; 29 Oct 2015 18:47:22 -0700 From: Mario Carrillo To: dev@dpdk.org Date: Thu, 29 Oct 2015 19:47:36 -0600 Message-Id: <1446169656-19818-11-git-send-email-mario.alfredo.c.arevalo@intel.com> X-Mailer: git-send-email 2.6.1.120.g24a00ef In-Reply-To: <1446169656-19818-1-git-send-email-mario.alfredo.c.arevalo@intel.com> References: <1442608390-12537-1-git-send-email-mario.alfredo.c.arevalo@intel.com> <1446169656-19818-1-git-send-email-mario.alfredo.c.arevalo@intel.com> Subject: [dpdk-dev] [PATCH v5 10/10] doc: Add information about new installation rules 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: Fri, 30 Oct 2015 01:47:44 -0000 Information about variables and rules behaviour is added to doc/build-sdk-quick.txt Signed-off-by: Mario Carrillo --- doc/build-sdk-quick.txt | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/doc/build-sdk-quick.txt b/doc/build-sdk-quick.txt index bf18b48..a76fa91 100644 --- a/doc/build-sdk-quick.txt +++ b/doc/build-sdk-quick.txt @@ -5,10 +5,21 @@ Build commands all same as build (default rule) build build in a configured directory clean remove files but keep configuration - install build many targets (wildcard allowed) and install in DESTDIR + install if T is defined build many targets (wildcard allowed) and install in DESTDIR + else it will call install-fhs install target uninstall remove all installed targets examples build examples for given targets (T=) examples_clean clean examples for given targets (T=) +Install commands + install if T is defined build many targets (wildcard allowed) and install in DESTDIR + else it will call install-fhs install target + install-headers install headers files + install-bin install app files a dpdk tools + install-lib install libraries + install-doc install documentation + install-mod install modules + install-sdk install headers, makefiles, scripts,examples, tools and config files + install-fhs install libraries, modules, app files, nic bind files and documentation Build variables EXTRA_CPPFLAGS preprocessor options EXTRA_CFLAGS compiler options @@ -23,3 +34,12 @@ Build variables T target template (install default: *) - used with config or install format: templates in config/defconfig_* +Install variables + RTE_PREFIX /usr/local by default it can be overridden + BIN_DIR $(RTE_PREFIX)/bin by default it can be overridden + INCLUDE_DIR $(RTE_PREFIX)/include by default it can be overridden + LIB_DIR $(RTE_PREFIX)/lib by default it can be overridden + DOC_DIR $(RTE_PREFIX)/share/doc/dpdk by default it can be overridden + DATA_DIR $(RTE_PREFIX)/shareby default it can be overridden + KMOD_DIR /lib/modules/$(uname -r)/extra/drivers/dpdk for linux + /boot/modules for BSD by default, they can be overridden -- 2.6.1.120.g24a00ef