]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/dpdk/examples/bond/Makefile
import 15.2.0 Octopus source
[ceph.git] / ceph / src / spdk / dpdk / examples / bond / Makefile
CommitLineData
11fdf7f2
TL
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2010-2015 Intel Corporation
3
4# binary name
5APP = bond_app
6
7# all source are stored in SRCS-y
8SRCS-y := main.c
9
10# Build using pkg-config variables if possible
11$(shell pkg-config --exists libdpdk)
12ifeq ($(.SHELLSTATUS),0)
13
14all: shared
15.PHONY: shared static
16shared: build/$(APP)-shared
17 ln -sf $(APP)-shared build/$(APP)
18static: build/$(APP)-static
19 ln -sf $(APP)-static build/$(APP)
20
21LDFLAGS += -lrte_pmd_bond
22
23PC_FILE := $(shell pkg-config --path libdpdk)
24CFLAGS += -O3 $(shell pkg-config --cflags libdpdk)
25LDFLAGS_SHARED = $(shell pkg-config --libs libdpdk)
26LDFLAGS_STATIC = -Wl,-Bstatic $(shell pkg-config --static --libs libdpdk)
27
28CFLAGS += -DALLOW_EXPERIMENTAL_API
29
30build/$(APP)-shared: $(SRCS-y) Makefile $(PC_FILE) | build
31 $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED)
32
33build/$(APP)-static: $(SRCS-y) Makefile $(PC_FILE) | build
34 $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_STATIC)
35
36build:
37 @mkdir -p $@
38
39.PHONY: clean
40clean:
41 rm -f build/$(APP) build/$(APP)-static build/$(APP)-shared
42 rmdir --ignore-fail-on-non-empty build
43
44else
45
46ifeq ($(RTE_SDK),)
47$(error "Please define RTE_SDK environment variable")
48endif
49
9f95a23c
TL
50# Default target, detect a build directory, by looking for a path with a .config
51RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.config)))))
11fdf7f2
TL
52
53include $(RTE_SDK)/mk/rte.vars.mk
54
55CFLAGS += $(WERROR_FLAGS)
56
57# workaround for a gcc bug with noreturn attribute
58# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
59ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
60CFLAGS_main.o += -Wno-return-type
61endif
62
63CFLAGS += -O3
64CFLAGS += -DALLOW_EXPERIMENTAL_API
65
66ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),y)
67LDLIBS += -lrte_pmd_bond
68endif
69
70include $(RTE_SDK)/mk/rte.extapp.mk
71
72endif