xref: /dpdk/examples/flow_filtering/Makefile (revision 11e02702)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright 2017 Mellanox Technologies, Ltd
3
4APP = flow
5
6SRCS-y := main.c
7
8PKGCONF ?= pkg-config
9
10# Build using pkg-config variables if possible
11ifneq ($(shell $(PKGCONF) --exists libdpdk && echo 0),0)
12$(error "no installation of DPDK found")
13endif
14
15all: shared
16.PHONY: shared static
17shared: build/$(APP)-shared
18	ln -sf $(APP)-shared build/$(APP)
19static: build/$(APP)-static
20	ln -sf $(APP)-static build/$(APP)
21
22PC_FILE := $(shell $(PKGCONF) --path libdpdk 2>/dev/null)
23CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk)
24LDFLAGS_SHARED = $(shell $(PKGCONF) --libs libdpdk)
25LDFLAGS_STATIC = $(shell $(PKGCONF) --static --libs libdpdk)
26
27ifeq ($(MAKECMDGOALS),static)
28# check for broken pkg-config
29ifeq ($(shell echo $(LDFLAGS_STATIC) | grep 'whole-archive.*l:lib.*no-whole-archive'),)
30$(warning "pkg-config output list does not contain drivers between 'whole-archive'/'no-whole-archive' flags.")
31$(error "Cannot generate statically-linked binaries with this version of pkg-config")
32endif
33endif
34
35CFLAGS += -DALLOW_EXPERIMENTAL_API
36
37build/$(APP)-shared: $(SRCS-y) Makefile $(PC_FILE) | build
38	$(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED)
39
40build/$(APP)-static: $(SRCS-y) Makefile $(PC_FILE) | build
41	$(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_STATIC)
42
43build:
44	@mkdir -p $@
45
46.PHONY: clean
47clean:
48	rm -f build/$(APP) build/$(APP)-static build/$(APP)-shared
49	test -d build && rmdir -p build || true
50