X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=examples%2Fvhost_crypto%2FMakefile;fp=examples%2Fmulti_process%2Fl2fwd_fork%2FMakefile;h=83d331012273ef85804dfddd049060236557c679;hb=b63264c8342e6a1b6971c79550d2af2024b6a4de;hp=b65582ef10bdd0bfaa905c25d8fe4fff01ae1bae;hpb=ca33590b6af032bff57d9cc70455660466a654b2;p=deb_dpdk.git diff --git a/examples/multi_process/l2fwd_fork/Makefile b/examples/vhost_crypto/Makefile similarity index 50% rename from examples/multi_process/l2fwd_fork/Makefile rename to examples/vhost_crypto/Makefile index b65582ef..83d33101 100644 --- a/examples/multi_process/l2fwd_fork/Makefile +++ b/examples/vhost_crypto/Makefile @@ -1,11 +1,5 @@ # SPDX-License-Identifier: BSD-3-Clause -# Copyright(c) 2010-2014 Intel Corporation - -# binary name -APP = l2fwd-fork - -# all source are stored in SRCS-y -SRCS-y := main.c flib.c +# Copyright(c) 2017-2018 Intel Corporation ifeq ($(RTE_SDK),) $(error "Please define RTE_SDK environment variable") @@ -16,7 +10,23 @@ RTE_TARGET ?= x86_64-native-linuxapp-gcc include $(RTE_SDK)/mk/rte.vars.mk -CFLAGS += -O3 +ifneq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y) +$(info This application can only operate in a linuxapp environment, \ +please change the definition of the RTE_TARGET environment variable) +all: +else + +# binary name +APP = vhost-crypto + +# all source are stored in SRCS-y +SRCS-y := main.c + +CFLAGS += -DALLOW_EXPERIMENTAL_API +CFLAGS += -O2 -D_FILE_OFFSET_BITS=64 CFLAGS += $(WERROR_FLAGS) +CFLAGS += -D_GNU_SOURCE include $(RTE_SDK)/mk/rte.extapp.mk + +endif