f-stack/dpdk/examples/server_node_efd/Makefile

11 lines
231 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) 2016-2020 Intel Corporation
2017-04-21 10:43:26 +00:00
2021-02-05 08:48:47 +00:00
subdirs := node server
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
$(subdirs):
$(MAKE) -C $@ $(MAKECMDGOALS)