From: Bruce Richardson Date: Mon, 16 Nov 2020 09:33:37 +0000 (+0000) Subject: examples/multi_process: add SPDX license tag to makefiles X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=aba2af9936b671e1b492f9c044b3e7f4b7e7628b 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: 13abe17c3cd4 ("examples/multi_process: convert to pkg-config-based build") Suggested-by: Stephen Hemminger Signed-off-by: Bruce Richardson --- diff --git a/examples/multi_process/Makefile b/examples/multi_process/Makefile index f0a999745a..e55204495d 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 e8debdfd9a..f4cab63130 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)