1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright(c) 2017-2018 Intel Corporation 3 4ifeq ($(RTE_SDK),) 5$(error "Please define RTE_SDK environment variable") 6endif 7 8# Default target, can be overridden by command line or environment 9RTE_TARGET ?= x86_64-native-linuxapp-gcc 10 11include $(RTE_SDK)/mk/rte.vars.mk 12 13ifneq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y) 14$(info This application can only operate in a linuxapp environment, \ 15please change the definition of the RTE_TARGET environment variable) 16all: 17else 18 19# binary name 20APP = vhost-crypto 21 22# all source are stored in SRCS-y 23SRCS-y := main.c 24 25CFLAGS += -DALLOW_EXPERIMENTAL_API 26CFLAGS += -O2 -D_FILE_OFFSET_BITS=64 27CFLAGS += $(WERROR_FLAGS) 28 29include $(RTE_SDK)/mk/rte.extapp.mk 30 31endif 32