xref: /dpdk/examples/multi_process/Makefile (revision aba2af9936b671e1b492f9c044b3e7f4b7e7628b)
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2020 Intel Corporation
3
4subdirs := client_server_mp hotplug_mp simple_mp symmetric_mp
5
6.PHONY: all static shared clean $(subdirs)
7all static shared clean: $(subdirs)
8
9$(subdirs):
10	$(MAKE) -C $@ $(MAKECMDGOALS)
11