fa23714eb8
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>
12 lines
252 B
Makefile
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)
|