a083f8cc77
Since the kernel modules are moved to kernel/ directory, there is no need anymore for the sub-directory eal/ in linux/, freebsd/ and windows/. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Acked-by: David Marchand <david.marchand@redhat.com>
13 lines
316 B
Makefile
13 lines
316 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
DIRS-y += include
|
|
DIRS-$(CONFIG_RTE_EXEC_ENV_LINUX) += linux
|
|
DEPDIRS-linux := include
|
|
DIRS-$(CONFIG_RTE_EXEC_ENV_FREEBSD) += freebsd
|
|
DEPDIRS-freebsd := include
|
|
|
|
include $(RTE_SDK)/mk/rte.subdir.mk
|