xref: /dpdk/examples/ethtool/Makefile (revision 3cc6ecfd)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2015-2020 Intel Corporation
3
4subdirs := lib ethtool-app
5
6.PHONY: all static shared clean $(subdirs)
7all static shared clean: $(subdirs)
8
9ethtool-app: lib
10$(subdirs):
11	$(MAKE) -C $@ $(MAKECMDGOALS)
12