1*3998e2a0SBruce Richardson# SPDX-License-Identifier: BSD-3-Clause 2*3998e2a0SBruce Richardson# Copyright(c) 2010-2014 Intel Corporation 3af75078fSIntel 4af75078fSIntelifeq ($(RTE_SDK),) 5af75078fSIntel$(error "Please define RTE_SDK environment variable") 6af75078fSIntelendif 7af75078fSIntel 898a7ea33SJerin Jacob# Default target, can be overridden by command line or environment 9519f3227SDavid MarchandRTE_TARGET ?= x86_64-native-linuxapp-gcc 10af75078fSIntel 11af75078fSIntelinclude $(RTE_SDK)/mk/rte.vars.mk 12af75078fSIntel 13af75078fSIntel# binary name 14af75078fSIntelAPP = simple_mp 15af75078fSIntel 16af75078fSIntel# all source are stored in SRCS-y 17af75078fSIntelSRCS-y := main.c mp_commands.c 18af75078fSIntel 19af75078fSIntelCFLAGS += -O3 20af75078fSIntelCFLAGS += $(WERROR_FLAGS) 21af75078fSIntel 22af75078fSIntelinclude $(RTE_SDK)/mk/rte.extapp.mk 23