mk: move internal file

Move the rte.extvars.mk to an internal directory and
update rte.vars.mk to find the file in the new location.

Signed-off-by: Keith Wiles <keith.wiles@intel.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
This commit is contained in:
Keith Wiles 2015-03-04 11:13:09 -06:00 committed by Thomas Monjalon
parent 391b5f425c
commit 0cd854eef5
2 changed files with 2 additions and 4 deletions

View File

@ -77,5 +77,3 @@ RTE_ARCH := $(CONFIG_RTE_ARCH:"%"=%)
RTE_MACHINE := $(CONFIG_RTE_MACHINE:"%"=%)
RTE_EXEC_ENV := $(CONFIG_RTE_EXEC_ENV:"%"=%)
RTE_TOOLCHAIN := $(CONFIG_RTE_TOOLCHAIN:"%"=%)

View File

@ -86,9 +86,9 @@ $(error RTE_TARGET is not defined)
endif
ifeq ($(BUILDING_RTE_SDK),)
# if we are building an external app/lib, include rte.extvars.mk that will
# if we are building an external app/lib, include internal/rte.extvars.mk that will
# define RTE_OUTPUT, RTE_SRCDIR, RTE_EXTMK, RTE_SDK_BIN, (etc ...)
include $(RTE_SDK)/mk/rte.extvars.mk
include $(RTE_SDK)/mk/internal/rte.extvars.mk
endif
CONFIG_RTE_LIBRTE_E1000_PMD = $(CONFIG_RTE_LIBRTE_IGB_PMD)