From patchwork Fri Mar 8 15:02:09 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Fleming X-Patchwork-Id: 226137 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) by ozlabs.org (Postfix) with ESMTP id C6CDF2C03BF for ; Sat, 9 Mar 2013 02:02:21 +1100 (EST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1UDyoO-00042B-Ch; Fri, 08 Mar 2013 15:02:20 +0000 Received: from arkanian.console-pimps.org ([212.110.184.194]) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1UDyoJ-0003yW-7A for fwts-devel@lists.ubuntu.com; Fri, 08 Mar 2013 15:02:15 +0000 Received: by arkanian.console-pimps.org (Postfix, from userid 1002) id 1890A6C055; Fri, 8 Mar 2013 15:02:15 +0000 (GMT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on arkanian.vm.bytemark.co.uk X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED autolearn=unavailable version=3.3.1 Received: from localhost (unknown [151.224.133.121]) by arkanian.console-pimps.org (Postfix) with ESMTPSA id 781956C055; Fri, 8 Mar 2013 15:02:11 +0000 (GMT) From: Matt Fleming To: fwts-devel@lists.ubuntu.com Subject: [PATCH] efi_runtime: Add 'install' target Date: Fri, 8 Mar 2013 15:02:09 +0000 Message-Id: <1362754929-25707-1-git-send-email-matt@console-pimps.org> X-Mailer: git-send-email 1.7.11.7 Cc: Matt Fleming X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.14 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: fwts-devel-bounces@lists.ubuntu.com From: Matt Fleming Signed-off-by: Matt Fleming Acked-by: Colin Ian King Acked-by: Keng-Yu Lin --- efi_runtime/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/efi_runtime/Makefile b/efi_runtime/Makefile index 8ed7dea..ea0cac2 100644 --- a/efi_runtime/Makefile +++ b/efi_runtime/Makefile @@ -2,5 +2,8 @@ obj-m += efi_runtime.o all: make -C /lib/modules/`uname -r`/build M=`pwd` modules +install: + make -C /lib/modules/`uname -r`/build M=`pwd` modules_install + clean: make -C /lib/modules/`uname -r`/build M=`pwd` clean