numam-dpdk/examples/ethtool/Makefile
Bruce Richardson fa23714eb8 examples/ethtool: convert to pkg-config-based build
Remove references to the old DPDK build system from the makefiles, and use
pkg-config provided flags instead.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
2020-09-07 23:51:57 +02:00

12 lines
252 B
Makefile

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2015-2020 Intel Corporation
subdirs := lib ethtool-app
.PHONY: all static shared clean $(subdirs)
all static shared clean: $(subdirs)
ethtool-app: lib
$(subdirs):
$(MAKE) -C $@ $(MAKECMDGOALS)