examples: use pkg-config in makefiles
[dpdk.git] / examples / load_balancer / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2010-2014 Intel Corporation
3
4 # binary name
5 APP = load_balancer
6
7 # all source are stored in SRCS-y
8 SRCS-y := main.c config.c init.c runtime.c
9
10 # Build using pkg-config variables if possible
11 $(shell pkg-config --exists libdpdk)
12 ifeq ($(.SHELLSTATUS),0)
13
14 PC_FILE := $(shell pkg-config --path libdpdk)
15 CFLAGS += $(shell pkg-config --cflags libdpdk)
16 LDFLAGS += $(shell pkg-config --libs libdpdk)
17
18 build/$(APP): $(SRCS-y) Makefile $(PC_FILE) | build
19         $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS)
20
21 build:
22         @mkdir -p $@
23
24 .PHONY: clean
25 clean:
26         rm -f build/$(APP)
27         rmdir --ignore-fail-on-non-empty build
28
29 else # Build using legacy build system
30
31 ifeq ($(RTE_SDK),)
32 $(error "Please define RTE_SDK environment variable")
33 endif
34
35 # Default target, can be overridden by command line or environment
36 RTE_TARGET ?= x86_64-native-linuxapp-gcc
37
38 include $(RTE_SDK)/mk/rte.vars.mk
39
40 CFLAGS += -O3 -g
41 CFLAGS += $(WERROR_FLAGS)
42 CFLAGS_config.o := -D_GNU_SOURCE
43
44 # workaround for a gcc bug with noreturn attribute
45 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
46 ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
47 CFLAGS_main.o += -Wno-return-type
48 endif
49
50 include $(RTE_SDK)/mk/rte.extapp.mk
51 endif