numam-dpdk/examples/performance-thread/Makefile
Kevin Laatz ff32ae1e6f examples/performance-thread: convert to pkg-config-based build
Remove references to the old make build system and use pkg-config for
building these examples.

Signed-off-by: Kevin Laatz <kevin.laatz@intel.com>
2020-09-07 23:51:56 +02:00

15 lines
374 B
Makefile

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2015-2020 Intel Corporation
subdirs := l3fwd-thread pthread_shim
.PHONY: all static shared clean $(subdirs)
all static shared clean: $(subdirs)
ifeq ($(filter $(shell uname -m),x86_64 arm64),)
$(error This application is only supported for x86_64 and arm64 targets)
endif
$(subdirs):
$(MAKE) -C $@ $(MAKECMDGOALS)