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 4F766A0565 for ; Mon, 2 Mar 2020 00:34:28 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0A26A1BF8D; Mon, 2 Mar 2020 00:34:28 +0100 (CET) Received: from valinux.co.jp (vagw.valinux.co.jp [210.128.90.14]) by dpdk.org (Postfix) with ESMTP id 53CD91C07B for ; Mon, 2 Mar 2020 00:34:26 +0100 (CET) Received: by valinux.co.jp (Postfix, from userid 1000) id 8512A240CF8; Mon, 2 Mar 2020 08:34:24 +0900 (JST) From: Itsuro Oda To: spp@dpdk.org, ferruh.yigit@intel.com, yasufum.o@gmail.com Date: Mon, 2 Mar 2020 08:34:19 +0900 Message-Id: <20200301233424.30377-3-oda@valinux.co.jp> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200301233424.30377-1-oda@valinux.co.jp> References: <20200225233304.2373-1-oda@valinux.co.jp> <20200301233424.30377-1-oda@valinux.co.jp> Subject: [spp] [PATCH v2 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