1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright(c) 2010-2014 Intel Corporation 3 4# binary name 5APP = vhost-switch 6 7# all source are stored in SRCS-y 8SRCS-y := main.c virtio_net.c 9 10# Build using pkg-config variables if possible 11$(shell pkg-config --exists libdpdk) 12ifeq ($(.SHELLSTATUS),0) 13 14PC_FILE := $(shell pkg-config --path libdpdk) 15CFLAGS += $(shell pkg-config --cflags libdpdk) 16LDFLAGS += $(shell pkg-config --libs libdpdk) 17 18build/$(APP): $(SRCS-y) Makefile $(PC_FILE) | build 19 $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) 20 21build: 22 @mkdir -p $@ 23 24.PHONY: clean 25clean: 26 rm -f build/$(APP) 27 rmdir --ignore-fail-on-non-empty build 28 29else # Build using legacy build system 30 31ifeq ($(RTE_SDK),) 32$(error "Please define RTE_SDK environment variable") 33endif 34 35# Default target, can be overridden by command line or environment 36RTE_TARGET ?= x86_64-native-linuxapp-gcc 37 38include $(RTE_SDK)/mk/rte.vars.mk 39 40ifneq ($(CONFIG_RTE_EXEC_ENV),"linuxapp") 41$(info This application can only operate in a linuxapp environment, \ 42please change the definition of the RTE_TARGET environment variable) 43all: 44else 45 46CFLAGS += -O2 -D_FILE_OFFSET_BITS=64 47CFLAGS += $(WERROR_FLAGS) 48CFLAGS += -D_GNU_SOURCE 49 50include $(RTE_SDK)/mk/rte.extapp.mk 51 52endif 53endif 54