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 2D536A04B5; Fri, 30 Oct 2020 11:53:16 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 47896C820; Fri, 30 Oct 2020 11:53:11 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 22EF5C7F8 for ; Fri, 30 Oct 2020 11:53:00 +0100 (CET) IronPort-SDR: UdDx9IUjyLVktxz+45gU+6msIgZd6gsdu4RArt/cWRz0mNJJtE4S+15L52DYG0PtN863x/cjl8 XKJ/jIjIAb2Q== X-IronPort-AV: E=McAfee;i="6000,8403,9789"; a="166004369" X-IronPort-AV: E=Sophos;i="5.77,432,1596524400"; d="scan'208";a="166004369" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Oct 2020 03:53:00 -0700 IronPort-SDR: 9NKGw/Zi5ezKz9jG5PFhb5uFLvNyF0ABxwMIKjohwDw1igRcF4TPblBjM0jctbvFmEMKm7YiMN wkcpPpjSxAzw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,432,1596524400"; d="scan'208";a="469489688" Received: from silpixa00393944.ir.intel.com ([10.237.213.150]) by orsmga004.jf.intel.com with ESMTP; 30 Oct 2020 03:52:58 -0700 From: Hariprasad Govindharajan To: dev@dpdk.org Cc: ferruh.yigit@intel.com, anatoly.burakov@intel.com, bluca@debian.org, thomas@monjalon.net, david.marchand@redhat.com, Hariprasad Govindharajan Date: Fri, 30 Oct 2020 10:52:49 +0000 Message-Id: <1604055169-47580-2-git-send-email-hariprasad.govindharajan@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1604055169-47580-1-git-send-email-hariprasad.govindharajan@intel.com> References: <1601909255-26251-1-git-send-email-hariprasad.govindharajan@intel.com> <1604055169-47580-1-git-send-email-hariprasad.govindharajan@intel.com> Subject: [dpdk-dev] [PATCH dpdk-kmods v8 2/2] linux/igb_uio: add Makefile to build the igb_uio module 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" This patch provides a Makefile to the user, to build the igb_uio module when required by running make inside the source directory Signed-off-by: Hariprasad Govindharajan --- This patch will be part of dpdk-kmods repo https://git.dpdk.org/dpdk-kmods/ --- v8: Changed the commit message based on the reviews and minor changes to the comments section v7: Changed the commit message based on the reviews v6: split the patch into two patches to create a patchset v5: Removed the DPDK dependency v4: Corrected the indentation v3: Edited the commit message and corrected the mistakes in the variable definition v2: Added more information to the commit message --- linux/igb_uio/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 linux/igb_uio/Makefile diff --git a/linux/igb_uio/Makefile b/linux/igb_uio/Makefile new file mode 100644 index 0000000..09ae5d9 --- /dev/null +++ b/linux/igb_uio/Makefile @@ -0,0 +1,7 @@ +KSRC ?= /lib/modules/`uname -r`/build + +all: + make -C $(KSRC)/ M=$(PWD) + +clean: + make -C $(KSRC)/ M=$(PWD) clean -- 2.7.4