11ffee690SAmr Mokhtar# SPDX-License-Identifier: BSD-3-Clause 21ffee690SAmr Mokhtar# Copyright(c) 2017 Intel Corporation 31ffee690SAmr Mokhtar 40eba4adeSBruce Richardson# binary name 50eba4adeSBruce RichardsonAPP = bbdev 60eba4adeSBruce Richardson 70eba4adeSBruce Richardson# all source are stored in SRCS-y 80eba4adeSBruce RichardsonSRCS-y := main.c 90eba4adeSBruce Richardson 1022119c45SBruce Richardson# Build using pkg-config variables if possible 1122119c45SBruce Richardson$(shell pkg-config --exists libdpdk) 1222119c45SBruce Richardsonifeq ($(.SHELLSTATUS),0) 1322119c45SBruce Richardson 141842d194SBruce Richardsonall: shared 151842d194SBruce Richardson.PHONY: shared static 161842d194SBruce Richardsonshared: build/$(APP)-shared 171842d194SBruce Richardson ln -sf $(APP)-shared build/$(APP) 181842d194SBruce Richardsonstatic: build/$(APP)-static 191842d194SBruce Richardson ln -sf $(APP)-static build/$(APP) 201842d194SBruce Richardson 2122119c45SBruce RichardsonPC_FILE := $(shell pkg-config --path libdpdk) 221842d194SBruce RichardsonCFLAGS += -O3 $(shell pkg-config --cflags libdpdk) 231842d194SBruce RichardsonLDFLAGS_SHARED = $(shell pkg-config --libs libdpdk) 241842d194SBruce RichardsonLDFLAGS_STATIC = -Wl,-Bstatic $(shell pkg-config --static --libs libdpdk) 2522119c45SBruce Richardson 2622119c45SBruce RichardsonCFLAGS += -DALLOW_EXPERIMENTAL_API 2722119c45SBruce Richardson 281842d194SBruce Richardsonbuild/$(APP)-shared: $(SRCS-y) Makefile $(PC_FILE) | build 291842d194SBruce Richardson $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED) 301842d194SBruce Richardson 311842d194SBruce Richardsonbuild/$(APP)-static: $(SRCS-y) Makefile $(PC_FILE) | build 321842d194SBruce Richardson $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_STATIC) 3322119c45SBruce Richardson 3422119c45SBruce Richardsonbuild: 3522119c45SBruce Richardson @mkdir -p $@ 3622119c45SBruce Richardson 3722119c45SBruce Richardson.PHONY: clean 3822119c45SBruce Richardsonclean: 391842d194SBruce Richardson rm -f build/$(APP) build/$(APP)-static build/$(APP)-shared 40*7e9562a1SBruce Richardson test -d build && rmdir -p build || true 4122119c45SBruce Richardson 4222119c45SBruce Richardsonelse 4322119c45SBruce Richardson 441ffee690SAmr Mokhtarifeq ($(RTE_SDK),) 451ffee690SAmr Mokhtar$(error "Please define RTE_SDK environment variable") 461ffee690SAmr Mokhtarendif 471ffee690SAmr Mokhtar 48e9c65942SBruce Richardson# Default target, detect a build directory, by looking for a path with a .config 49e9c65942SBruce RichardsonRTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.config))))) 501ffee690SAmr Mokhtar 511ffee690SAmr Mokhtarinclude $(RTE_SDK)/mk/rte.vars.mk 521ffee690SAmr Mokhtar 53a6ec3159SNeil HormanCFLAGS += -DALLOW_EXPERIMENTAL_API 541ffee690SAmr MokhtarCFLAGS += -O3 551ffee690SAmr MokhtarCFLAGS += $(WERROR_FLAGS) 561ffee690SAmr Mokhtar 571ffee690SAmr Mokhtarinclude $(RTE_SDK)/mk/rte.extapp.mk 5822119c45SBruce Richardson 5922119c45SBruce Richardsonendif 60