The EAL API (with doxygen documentation) is moved from common/include/ to include/, which makes more clear that it is the global API for all environments and architectures. Note that the arch-specific and OS-specific include files are not in this global include directory, but include/generic/ should cover the doxygen documentation for them. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Acked-by: David Marchand <david.marchand@redhat.com>
20 lines
626 B
Makefile
20 lines
626 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_EAL)-include := \
|
|
$(sort $(notdir \
|
|
$(wildcard $(RTE_SDK)/lib/librte_eal/include/*.h)))
|
|
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_EAL)-include/generic := \
|
|
$(sort $(addprefix generic/, $(notdir \
|
|
$(wildcard $(RTE_SDK)/lib/librte_eal/include/generic/*.h))))
|
|
|
|
ARCH_DIR ?= $(RTE_ARCH)
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_EAL)-include += \
|
|
$(sort $(addprefix ../$(ARCH_DIR)/include/, $(notdir \
|
|
$(wildcard $(RTE_SDK)/lib/librte_eal/$(ARCH_DIR)/include/*.h))))
|
|
|
|
include $(RTE_SDK)/mk/rte.install.mk
|