1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2010-2015 Intel Corporation
7 # all source are stored in SRCS-y
10 # Build using pkg-config variables if possible
11 $(shell pkg-config --exists libdpdk)
12 ifeq ($(.SHELLSTATUS),0)
16 shared: build/$(APP)-shared
17 ln -sf $(APP)-shared build/$(APP)
18 static: build/$(APP)-static
19 ln -sf $(APP)-static build/$(APP)
21 PC_FILE := $(shell pkg-config --path libdpdk)
22 CFLAGS += -O3 $(shell pkg-config --cflags libdpdk)
23 LDFLAGS_SHARED = $(shell pkg-config --libs libdpdk)
24 LDFLAGS_STATIC = -Wl,-Bstatic $(shell pkg-config --static --libs libdpdk)
26 build/$(APP)-shared: $(SRCS-y) Makefile $(PC_FILE) | build
27 $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED)
29 build/$(APP)-static: $(SRCS-y) Makefile $(PC_FILE) | build
30 $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_STATIC)
37 rm -f build/$(APP) build/$(APP)-static build/$(APP)-shared
38 test -d build && rmdir -p build || true
40 else # Build using legacy build system
43 $(error "Please define RTE_SDK environment variable")
46 # Default target, detect a build directory, by looking for a path with a .config
47 RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.config)))))
49 include $(RTE_SDK)/mk/rte.vars.mk
51 CFLAGS += $(WERROR_FLAGS)
53 # workaround for a gcc bug with noreturn attribute
54 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
55 ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
56 CFLAGS_main.o += -Wno-return-type
59 EXTRA_CFLAGS += -O3 -g -Wfatal-errors
61 include $(RTE_SDK)/mk/rte.extapp.mk