2017-12-19 15:49:02 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
2012-09-04 12:54:00 +00:00
|
|
|
|
|
|
|
ifeq ($(RTE_SDK),)
|
|
|
|
$(error "Please define RTE_SDK environment variable")
|
|
|
|
endif
|
|
|
|
|
2019-03-27 13:58:05 +00:00
|
|
|
# Default target, detect a build directory, by looking for a path with a .config
|
|
|
|
RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.config)))))
|
2012-09-04 12:54:00 +00:00
|
|
|
|
2014-05-16 08:18:57 +00:00
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
2012-09-04 12:54:00 +00:00
|
|
|
|
2019-03-06 16:22:39 +00:00
|
|
|
DIRS-$(CONFIG_RTE_EXEC_ENV_LINUX) += client_server_mp
|
|
|
|
DIRS-$(CONFIG_RTE_EXEC_ENV_LINUX) += simple_mp
|
|
|
|
DIRS-$(CONFIG_RTE_EXEC_ENV_LINUX) += symmetric_mp
|
|
|
|
DIRS-$(CONFIG_RTE_EXEC_ENV_LINUX) += hotplug_mp
|
2012-09-04 12:54:00 +00:00
|
|
|
|
2014-05-16 08:18:57 +00:00
|
|
|
include $(RTE_SDK)/mk/rte.extsubdir.mk
|