2017-12-19 15:49:02 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
2012-09-04 12:54:00 +00:00
|
|
|
|
2017-09-25 16:28:49 +00:00
|
|
|
# binary name
|
|
|
|
APP = cmdline
|
|
|
|
|
|
|
|
# all source are stored in SRCS-y
|
|
|
|
SRCS-y := main.c commands.c parse_obj_list.c
|
|
|
|
|
2021-05-05 14:25:25 +00:00
|
|
|
PKGCONF ?= pkg-config
|
|
|
|
|
2017-10-09 13:13:16 +00:00
|
|
|
# Build using pkg-config variables if possible
|
2021-05-05 14:25:25 +00:00
|
|
|
ifneq ($(shell $(PKGCONF) --exists libdpdk && echo 0),0)
|
2020-09-03 15:26:41 +00:00
|
|
|
$(error "no installation of DPDK found")
|
|
|
|
endif
|
2017-10-09 13:13:16 +00:00
|
|
|
|
2017-12-07 15:51:41 +00:00
|
|
|
all: shared
|
|
|
|
.PHONY: shared static
|
|
|
|
shared: build/$(APP)-shared
|
|
|
|
ln -sf $(APP)-shared build/$(APP)
|
|
|
|
static: build/$(APP)-static
|
|
|
|
ln -sf $(APP)-static build/$(APP)
|
|
|
|
|
2019-11-15 15:17:00 +00:00
|
|
|
PC_FILE := $(shell $(PKGCONF) --path libdpdk 2>/dev/null)
|
2019-07-02 14:44:41 +00:00
|
|
|
CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk)
|
|
|
|
LDFLAGS_SHARED = $(shell $(PKGCONF) --libs libdpdk)
|
2020-06-30 14:14:32 +00:00
|
|
|
LDFLAGS_STATIC = $(shell $(PKGCONF) --static --libs libdpdk)
|
2017-12-07 15:51:41 +00:00
|
|
|
|
2021-01-19 13:03:24 +00:00
|
|
|
ifeq ($(MAKECMDGOALS),static)
|
|
|
|
# check for broken pkg-config
|
|
|
|
ifeq ($(shell echo $(LDFLAGS_STATIC) | grep 'whole-archive.*l:lib.*no-whole-archive'),)
|
|
|
|
$(warning "pkg-config output list does not contain drivers between 'whole-archive'/'no-whole-archive' flags.")
|
|
|
|
$(error "Cannot generate statically-linked binaries with this version of pkg-config")
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2020-11-14 09:05:33 +00:00
|
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
|
|
|
|
2017-12-07 15:51:41 +00:00
|
|
|
build/$(APP)-shared: $(SRCS-y) Makefile $(PC_FILE) | build
|
|
|
|
$(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED)
|
2017-10-09 13:13:16 +00:00
|
|
|
|
2017-12-07 15:51:41 +00:00
|
|
|
build/$(APP)-static: $(SRCS-y) Makefile $(PC_FILE) | build
|
|
|
|
$(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_STATIC)
|
2017-10-09 13:13:16 +00:00
|
|
|
|
|
|
|
build:
|
|
|
|
@mkdir -p $@
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
2017-12-07 15:51:41 +00:00
|
|
|
rm -f build/$(APP) build/$(APP)-static build/$(APP)-shared
|
2019-05-17 12:02:31 +00:00
|
|
|
test -d build && rmdir -p build || true
|