From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: [PATCH v2] mk: allow exec-env specific targets Date: Tue, 6 Jun 2017 18:28:36 +0530 Message-ID: <20170606125836.4789-1-jerin.jacob@caviumnetworks.com> References: <20170606063650.31434-1-jerin.jacob@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain Cc: thomas@monjalon.net, Jerin Jacob To: dev@dpdk.org Return-path: Received: from NAM02-CY1-obe.outbound.protection.outlook.com (mail-cys01nam02on0042.outbound.protection.outlook.com [104.47.37.42]) by dpdk.org (Postfix) with ESMTP id 5712237B1 for ; Tue, 6 Jun 2017 14:59:07 +0200 (CEST) In-Reply-To: <20170606063650.31434-1-jerin.jacob@caviumnetworks.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Add a hook in generic rte.sdkbuild.mk file to include exec-env specific targets. Signed-off-by: Jerin Jacob --- Useful in integrating some custom targets in nonstandard execution environments. For example, a bare-metal-simulator exec execution environment may need a target to run the dpdk applications. v2: - Change mk/exec-env/$(RTE_EXEC_ENV)/rte.extra.mk to mk/exec-env/$(RTE_EXEC_ENV)/rte.custom.mk(Thomas) - Remove empty files and include through -include(Thomas) --- mk/rte.sdkbuild.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mk/rte.sdkbuild.mk b/mk/rte.sdkbuild.mk index 0bf909e9e..f6068bb93 100644 --- a/mk/rte.sdkbuild.mk +++ b/mk/rte.sdkbuild.mk @@ -38,6 +38,9 @@ else include $(RTE_SDK)/mk/rte.vars.mk endif +# allow exec-env specific targets +-include $(RTE_SDK)/mk/exec-env/$(RTE_EXEC_ENV)/rte.custom.mk + buildtools: | lib drivers: | lib buildtools app: | lib buildtools drivers -- 2.13.0