f-stack/dpdk/examples/ethtool/Makefile

12 lines
252 B
Makefile
Raw Normal View History

2019-06-25 11:12:58 +00:00
# SPDX-License-Identifier: BSD-3-Clause
2021-02-05 08:48:47 +00:00
# Copyright(c) 2015-2020 Intel Corporation
2017-04-21 10:43:26 +00:00
2021-02-05 08:48:47 +00:00
subdirs := lib ethtool-app
2017-04-21 10:43:26 +00:00
2021-02-05 08:48:47 +00:00
.PHONY: all static shared clean $(subdirs)
all static shared clean: $(subdirs)
2017-04-21 10:43:26 +00:00
2021-02-05 08:48:47 +00:00
ethtool-app: lib
$(subdirs):
$(MAKE) -C $@ $(MAKECMDGOALS)