xref: /dpdk/examples/l2fwd-cat/Makefile (revision ca926852)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2016 Intel Corporation
3
4# binary name
5APP = l2fwd-cat
6
7# all source are stored in SRCS-y
8SRCS-y := l2fwd-cat.c cat.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
21PKGCONF=pkg-config --define-prefix
22
23PC_FILE := $(shell $(PKGCONF) --path libdpdk)
24CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk)
25LDFLAGS_SHARED = $(shell $(PKGCONF) --libs libdpdk)
26LDFLAGS_STATIC = -Wl,-Bstatic $(shell $(PKGCONF) --static --libs libdpdk)
27
28LDFLAGS += -lpqos
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	test -d build && rmdir -p build || true
43
44else # Build using legacy build system
45
46ifeq ($(RTE_SDK),)
47$(error "Please define RTE_SDK environment variable")
48endif
49
50ifeq ($(PQOS_INSTALL_PATH),)
51$(error "Please define PQOS_INSTALL_PATH environment variable")
52endif
53
54# Default target, detect a build directory, by looking for a path with a .config
55RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.config)))))
56
57include $(RTE_SDK)/mk/rte.vars.mk
58
59CFLAGS += $(WERROR_FLAGS)
60
61# workaround for a gcc bug with noreturn attribute
62# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
63ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
64CFLAGS_main.o += -Wno-return-type
65endif
66
67EXTRA_CFLAGS += -O3 -g -Wfatal-errors
68
69CFLAGS += -I$(PQOS_INSTALL_PATH)/../include
70
71LDLIBS += -L$(PQOS_INSTALL_PATH)
72LDLIBS += -lpqos
73
74include $(RTE_SDK)/mk/rte.extapp.mk
75endif
76