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 75C3EA055A for ; Thu, 27 Feb 2020 05:25:16 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1EC6F1BFB1; Thu, 27 Feb 2020 05:25:16 +0100 (CET) Received: from valinux.co.jp (vagw.valinux.co.jp [210.128.90.14]) by dpdk.org (Postfix) with ESMTP id E3B2E1BF8D for ; Thu, 27 Feb 2020 05:25:13 +0100 (CET) Received: by valinux.co.jp (Postfix, from userid 1000) id 5E263240CF1; Thu, 27 Feb 2020 13:25:12 +0900 (JST) From: Itsuro Oda To: spp@dpdk.org, ferruh.yigit@intel.com, yasufum.o@gmail.com Date: Thu, 27 Feb 2020 13:25:11 +0900 Message-Id: <20200227042512.22098-3-oda@valinux.co.jp> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200227042512.22098-1-oda@valinux.co.jp> References: <20200226020245.3037-1-oda@valinux.co.jp> <20200227042512.22098-1-oda@valinux.co.jp> Subject: [spp] [PATCH v2 2/3] tools: add Makefile for vdev_test 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 Makefile of tools to build vdev_test. Signed-off-by: Itsuro Oda --- tools/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tools/Makefile diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 0000000..40c1310 --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,15 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2020 Nippon Telegraph and Telephone Corporation + +ifeq ($(RTE_SDK),) +$(error "Please define RTE_SDK environment variable") +endif + +# Default target, can be overriden by command line or environment +RTE_TARGET ?= x86_64-native-linuxapp-gcc + +include $(RTE_SDK)/mk/rte.vars.mk + +DIRS-y += vdev_test + +include $(RTE_SDK)/mk/rte.extsubdir.mk -- 2.17.1