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: 13abe17c3cd4 ("examples/multi_process: convert to pkg-config-based build") Suggested-by: Stephen Hemminger <step...@networkplumber.org> Signed-off-by: Bruce Richardson <bruce.richard...@intel.com> --- v2: adjust copyright year to reflect year of authorship add more detail and fixes line to commit log. --- examples/multi_process/Makefile | 3 +++ examples/multi_process/client_server_mp/Makefile | 3 +++ 2 files changed, 6 insertions(+) diff --git a/examples/multi_process/Makefile b/examples/multi_process/Makefile index f0a999745..e55204495 100644 --- a/examples/multi_process/Makefile +++ b/examples/multi_process/Makefile @@ -1,3 +1,6 @@ +# 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) diff --git a/examples/multi_process/client_server_mp/Makefile b/examples/multi_process/client_server_mp/Makefile index e8debdfd9..f4cab6313 100644 --- a/examples/multi_process/client_server_mp/Makefile +++ b/examples/multi_process/client_server_mp/Makefile @@ -1,3 +1,6 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2020 Intel Corporation + subdirs := mp_client mp_server .PHONY: all static shared clean $(subdirs) -- 2.25.1