Add a hook in generic rte.sdkbuild.mk file to include exec-env specific targets.
Signed-off-by: Jerin Jacob <jerin.ja...@caviumnetworks.com> --- 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