numam-dpdk/examples/multi_process/Makefile
Bruce Richardson aba2af9936 examples/multi_process: add SPDX license tag to makefiles
The makefiles for some of the multi_process example files were missing
SPDX license headers, so add them. These Makefiles completely replaced
the older makefiles and were written from scratch, not based on previous
versions, so add a new copyright year on them.

Fixes: 13abe17c3c ("examples/multi_process: convert to pkg-config-based build")

Suggested-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
2020-11-20 17:32:23 +01:00

11 lines
265 B
Makefile

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2020 Intel Corporation
subdirs := client_server_mp hotplug_mp simple_mp symmetric_mp
.PHONY: all static shared clean $(subdirs)
all static shared clean: $(subdirs)
$(subdirs):
$(MAKE) -C $@ $(MAKECMDGOALS)