f-stack/dpdk/examples/multi_process/Makefile

11 lines
265 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) 2020 Intel Corporation
2017-04-21 10:43:26 +00:00
2021-02-05 08:48:47 +00:00
subdirs := client_server_mp hotplug_mp simple_mp symmetric_mp
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)