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 7770BA055E for ; Wed, 26 Feb 2020 00:33:08 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 40543B62; Wed, 26 Feb 2020 00:33:08 +0100 (CET) Received: from valinux.co.jp (vagw.valinux.co.jp [210.128.90.14]) by dpdk.org (Postfix) with ESMTP id 89B3B1BF8D for ; Wed, 26 Feb 2020 00:33:06 +0100 (CET) Received: by valinux.co.jp (Postfix, from userid 1000) id 38D28240882; Wed, 26 Feb 2020 08:33:05 +0900 (JST) From: Itsuro Oda To: spp@dpdk.org, ferruh.yigit@intel.com, yasufum.o@gmail.com Date: Wed, 26 Feb 2020 08:32:59 +0900 Message-Id: <20200225233304.2373-3-oda@valinux.co.jp> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200225233304.2373-1-oda@valinux.co.jp> References: <20200225233304.2373-1-oda@valinux.co.jp> Subject: [spp] [PATCH 2/7] drivers: add pipe PMD in Makefile X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: spp-bounces@dpdk.org Sender: "spp" This patch adds the directory of pipe PMD in Makefile. Signed-off-by: Itsuro Oda --- src/drivers/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/drivers/Makefile b/src/drivers/Makefile index f2deba7..f759238 100644 --- a/src/drivers/Makefile +++ b/src/drivers/Makefile @@ -11,5 +11,6 @@ RTE_TARGET ?= x86_64-native-linuxapp-gcc include $(RTE_SDK)/mk/rte.vars.mk DIRS-y += vhost +DIRS-y += pipe include $(RTE_SDK)/mk/rte.extsubdir.mk -- 2.17.1