2017-12-19 15:49:02 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
2014-10-20 04:38:26 +00:00
|
|
|
|
2017-09-25 16:28:49 +00:00
|
|
|
# binary name
|
|
|
|
APP = vhost-switch
|
|
|
|
|
|
|
|
# all source are stored in SRCS-y
|
|
|
|
SRCS-y := main.c virtio_net.c
|
|
|
|
|
2017-10-09 13:13:16 +00:00
|
|
|
# Build using pkg-config variables if possible
|
2019-07-03 16:40:00 +00:00
|
|
|
ifeq ($(shell pkg-config --exists libdpdk && echo 0),0)
|
2017-10-09 13:13:16 +00:00
|
|
|
|
2017-12-07 15:51:41 +00:00
|
|
|
all: shared
|
|
|
|
.PHONY: shared static
|
|
|
|
shared: build/$(APP)-shared
|
|
|
|
ln -sf $(APP)-shared build/$(APP)
|
|
|
|
static: build/$(APP)-static
|
|
|
|
ln -sf $(APP)-static build/$(APP)
|
|
|
|
|
|
|
|
LDFLAGS += -pthread
|
|
|
|
|
2019-11-15 15:16:59 +00:00
|
|
|
PKGCONF ?= pkg-config
|
2019-07-02 14:44:41 +00:00
|
|
|
|
2019-11-15 15:17:00 +00:00
|
|
|
PC_FILE := $(shell $(PKGCONF) --path libdpdk 2>/dev/null)
|
2019-07-02 14:44:41 +00:00
|
|
|
CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk)
|
|
|
|
LDFLAGS_SHARED = $(shell $(PKGCONF) --libs libdpdk)
|
|
|
|
LDFLAGS_STATIC = -Wl,-Bstatic $(shell $(PKGCONF) --static --libs libdpdk)
|
2017-12-07 15:51:41 +00:00
|
|
|
|
2018-04-05 15:33:20 +00:00
|
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
|
|
|
|
2017-12-07 15:51:41 +00:00
|
|
|
build/$(APP)-shared: $(SRCS-y) Makefile $(PC_FILE) | build
|
|
|
|
$(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED)
|
2017-10-09 13:13:16 +00:00
|
|
|
|
2017-12-07 15:51:41 +00:00
|
|
|
build/$(APP)-static: $(SRCS-y) Makefile $(PC_FILE) | build
|
|
|
|
$(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_STATIC)
|
2017-10-09 13:13:16 +00:00
|
|
|
|
|
|
|
build:
|
|
|
|
@mkdir -p $@
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
2017-12-07 15:51:41 +00:00
|
|
|
rm -f build/$(APP) build/$(APP)-static build/$(APP)-shared
|
2019-05-17 12:02:31 +00:00
|
|
|
test -d build && rmdir -p build || true
|
2017-10-09 13:13:16 +00:00
|
|
|
|
|
|
|
else # Build using legacy build system
|
|
|
|
|
2014-10-20 04:38:26 +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)))))
|
2014-10-20 04:38:26 +00:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
2019-03-06 16:22:39 +00:00
|
|
|
ifneq ($(CONFIG_RTE_EXEC_ENV_LINUX),y)
|
2019-03-06 16:22:42 +00:00
|
|
|
$(info This application can only operate in a linux environment, \
|
2014-10-20 04:38:26 +00:00
|
|
|
please change the definition of the RTE_TARGET environment variable)
|
|
|
|
all:
|
|
|
|
else
|
|
|
|
|
2018-04-05 15:33:20 +00:00
|
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
2014-10-20 04:38:26 +00:00
|
|
|
CFLAGS += -O2 -D_FILE_OFFSET_BITS=64
|
|
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.extapp.mk
|
|
|
|
|
|
|
|
endif
|
2017-10-09 13:13:16 +00:00
|
|
|
endif
|