xref: /dpdk/examples/eventdev_pipeline/Makefile (revision 5a196330)
16d239dd5SPavan Nikhilesh# SPDX-License-Identifier: BSD-3-Clause
26d239dd5SPavan Nikhilesh# Copyright(c) 2016-2017 Intel Corporation
36d239dd5SPavan Nikhilesh
40eba4adeSBruce Richardson# binary name
50eba4adeSBruce RichardsonAPP = eventdev_pipeline
60eba4adeSBruce Richardson
70eba4adeSBruce Richardson# all source are stored in SRCS-y
80eba4adeSBruce RichardsonSRCS-y := main.c
90eba4adeSBruce RichardsonSRCS-y += pipeline_worker_generic.c
100eba4adeSBruce RichardsonSRCS-y += pipeline_worker_tx.c
110eba4adeSBruce Richardson
1222119c45SBruce Richardson# Build using pkg-config variables if possible
13fda34680SCiara Powerifneq ($(shell pkg-config --exists libdpdk && echo 0),0)
14fda34680SCiara Power$(error "no installation of DPDK found")
15fda34680SCiara Powerendif
1622119c45SBruce Richardson
171842d194SBruce Richardsonall: shared
181842d194SBruce Richardson.PHONY: shared static
191842d194SBruce Richardsonshared: build/$(APP)-shared
201842d194SBruce Richardson	ln -sf $(APP)-shared build/$(APP)
211842d194SBruce Richardsonstatic: build/$(APP)-static
221842d194SBruce Richardson	ln -sf $(APP)-static build/$(APP)
231842d194SBruce Richardson
2412a652a0SBruce RichardsonPKGCONF ?= pkg-config
25ca926852SBruce Richardson
2669b1bb49SBruce RichardsonPC_FILE := $(shell $(PKGCONF) --path libdpdk 2>/dev/null)
27ca926852SBruce RichardsonCFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk)
28ca926852SBruce RichardsonLDFLAGS_SHARED = $(shell $(PKGCONF) --libs libdpdk)
298549295dSBruce RichardsonLDFLAGS_STATIC = $(shell $(PKGCONF) --static --libs libdpdk)
3022119c45SBruce Richardson
31*5a196330SBruce Richardsonifeq ($(MAKECMDGOALS),static)
32*5a196330SBruce Richardson# check for broken pkg-config
33*5a196330SBruce Richardsonifeq ($(shell echo $(LDFLAGS_STATIC) | grep 'whole-archive.*l:lib.*no-whole-archive'),)
34*5a196330SBruce Richardson$(warning "pkg-config output list does not contain drivers between 'whole-archive'/'no-whole-archive' flags.")
35*5a196330SBruce Richardson$(error "Cannot generate statically-linked binaries with this version of pkg-config")
36*5a196330SBruce Richardsonendif
37*5a196330SBruce Richardsonendif
38*5a196330SBruce Richardson
39bc8e3247SDavid MarchandCFLAGS += -DALLOW_EXPERIMENTAL_API
40bc8e3247SDavid Marchand
411842d194SBruce Richardsonbuild/$(APP)-shared: $(SRCS-y) Makefile $(PC_FILE) | build
421842d194SBruce Richardson	$(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED)
431842d194SBruce Richardson
441842d194SBruce Richardsonbuild/$(APP)-static: $(SRCS-y) Makefile $(PC_FILE) | build
451842d194SBruce Richardson	$(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_STATIC)
4622119c45SBruce Richardson
4722119c45SBruce Richardsonbuild:
4822119c45SBruce Richardson	@mkdir -p $@
4922119c45SBruce Richardson
5022119c45SBruce Richardson.PHONY: clean
5122119c45SBruce Richardsonclean:
521842d194SBruce Richardson	rm -f build/$(APP) build/$(APP)-static build/$(APP)-shared
537e9562a1SBruce Richardson	test -d build && rmdir -p build || true
54