From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 758ACA04DD; Mon, 16 Nov 2020 03:23:55 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 50FD6C8B0; Mon, 16 Nov 2020 03:23:54 +0100 (CET) Received: from mail-pg1-f193.google.com (mail-pg1-f193.google.com [209.85.215.193]) by dpdk.org (Postfix) with ESMTP id 1F849323E for ; Mon, 16 Nov 2020 03:23:52 +0100 (CET) Received: by mail-pg1-f193.google.com with SMTP id w4so11738670pgg.13 for ; Sun, 15 Nov 2020 18:23:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=pPBeA54/yfqYr26Ich/CWsKFP3kThn2nIHLhyHawcnc=; b=QSmWkrv8tIlQzcUHplG3UpCmamQ96eiW8VITwtx3CzRsuas7ZBYro7gJrKuZ95k1jq 8ApZ+rxpZK8IFbrIa9bn5KTSyDXJFJazTZKufYR3SOQ2ficrZscAglmF88BdfEbMFQx2 +1uPpOBUYv6xItwEtGArlbnVHNrRhGHBr+aRRVZxjfzctV0sPwcIy5U5NYwX/6NUu/RX RFQ1Dpevq3ky+qk2GSpLS6Nv9qemMW0x8RXa3jT57BdM4LY3OqOTwvUGTkrA64Bo5SyC 5L1fFMv5asrpWwwjUGQJ0oG4be5b1TpQrfcd4Ef0mP6U6S7U5/HkaeOFvF0naA7iMhPL OM+w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=pPBeA54/yfqYr26Ich/CWsKFP3kThn2nIHLhyHawcnc=; b=YkIDtJVatCQWTTZVBdNjhvysGJ6Z/MQG77JB8WoU16+S7pFm5JPJeqHQSp644LC4Mm d4DUEzQEYuzHaGiHK+3sE+2M0uBg7La6mJBUbM/eG2drBQyga6c65MDJCJbCCEbExFo9 V0IYOkFeCPlg2o1OeTR5TeLt2jD40EahMKi8NHiXt5XjtLloe45W65pKPrr8PC/fU2OZ 33UybX8VhSBe2VAk46o6e31s9c910PloTMW7slkQ3dXDJnF/vkcft3yu0R5UP0DIpte4 pKs7hdmKTcbAy5hMD1Q00OmQLcsZSbJeK8AnhEvKo0Jy7X8gzA7fOGhEoaXyRLIpFa/k Pwag== X-Gm-Message-State: AOAM533VaaeVSPzjjc/9QyMEOrWMXSyvjdG9s6TUNkKz6m83BmQ1ra+0 McYVO19WxEVa3WyfWGyDckj2wA== X-Google-Smtp-Source: ABdhPJy1rPSnJjKtMPPJApToo4DK7zB/LOxJlOhmM/jiaXIIgeU6tVhS2rbO8ahXAl5q2buzqORVqg== X-Received: by 2002:a62:f909:0:b029:18b:588d:979e with SMTP id o9-20020a62f9090000b029018b588d979emr12341551pfh.48.1605493430334; Sun, 15 Nov 2020 18:23:50 -0800 (PST) Received: from hermes.local (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id n6sm8234786pgr.87.2020.11.15.18.23.49 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 15 Nov 2020 18:23:49 -0800 (PST) From: Stephen Hemminger To: bruce.richardson@intel.com Cc: dev@dpdk.org, Stephen Hemminger Date: Sun, 15 Nov 2020 18:23:47 -0800 Message-Id: <20201116022347.26136-1-stephen@networkplumber.org> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH] examples/multi_process: add missing SPDX header to Makefile X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Make is still used for these examples, so add header to Makefile Signed-off-by: Stephen Hemminger --- 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 f0a999745a7d..937d00faa313 100644 --- a/examples/multi_process/Makefile +++ b/examples/multi_process/Makefile @@ -1,3 +1,6 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2010-2014 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 e8debdfd9ac7..fbe6d67a7771 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) 2010-2014 Intel Corporation + subdirs := mp_client mp_server .PHONY: all static shared clean $(subdirs) -- 2.27.0