2017-12-19 15:49:02 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
2012-09-04 12:54:00 +00:00
|
|
|
#
|
|
|
|
|
2017-09-25 16:28:49 +00:00
|
|
|
# binary name
|
|
|
|
APP = ipv4_multicast
|
|
|
|
|
|
|
|
# all source are stored in SRCS-y
|
|
|
|
SRCS-y := main.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)
|
|
|
|
|
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)
|
2020-06-30 14:14:32 +00:00
|
|
|
LDFLAGS_STATIC = $(shell $(PKGCONF) --static --libs libdpdk)
|
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
|
|
|
|
|
2012-09-04 12:54:00 +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)))))
|
2012-09-04 12:54:00 +00:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
CFLAGS += -O3
|
|
|
|
CFLAGS += $(WERROR_FLAGS)
|
2020-04-22 19:03:45 +00:00
|
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
2012-09-04 12:54:00 +00:00
|
|
|
|
|
|
|
# workaround for a gcc bug with noreturn attribute
|
|
|
|
# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
|
|
|
|
ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
|
|
|
|
CFLAGS_main.o += -Wno-return-type
|
|
|
|
endif
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.extapp.mk
|
2017-10-09 13:13:16 +00:00
|
|
|
|
|
|
|
endif
|