From patchwork Mon Nov 14 10:37:55 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexey Fisher X-Patchwork-Id: 1358 Return-Path: Received: from mailout-de.gmx.net (mailout-de.gmx.net [213.165.64.22]) by open-mesh.org (Postfix) with SMTP id BF8CD60085C for ; Mon, 14 Nov 2011 11:37:56 +0100 (CET) Received: (qmail invoked by alias); 14 Nov 2011 10:37:56 -0000 Received: from p54833F3B.dip.t-dialin.net (EHLO [192.168.1.14]) [84.131.63.59] by mail.gmx.net (mp048) with SMTP; 14 Nov 2011 11:37:56 +0100 X-Authenticated: #23875046 X-Provags-ID: V01U2FsdGVkX1/GbIpTM3DG+ADF4HwsC0FQkdTakbAu4P/rh1flV7 6d9cwKHxTQjX6h Message-ID: <4EC0EF83.2060602@fisher-privat.net> Date: Mon, 14 Nov 2011 11:37:55 +0100 From: Alexey Fisher User-Agent: Mozilla/5.0 (X11; Linux i686; rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1 MIME-Version: 1.0 To: Sven Eckelmann References: <1321261892-6401-1-git-send-email-bug-track@fisher-privat.net> <9935980.KTPM4GpO8u@sven-laptop.home.narfation.org> <4EC0EB27.8060207@fisher-privat.net> <1956205.mQFSXpQuIf@sven-laptop.home.narfation.org> In-Reply-To: <1956205.mQFSXpQuIf@sven-laptop.home.narfation.org> X-Y-GMX-Trusted: 0 Cc: b.a.t.m.a.n@lists.open-mesh.org, lindner_marek@yahoo.de Subject: Re: [B.A.T.M.A.N.] [PATCH] add make install X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Nov 2011 10:37:57 -0000 On 14.11.2011 11:29, Sven Eckelmann wrote: > On Monday 14 November 2011 11:19:19 Alexey Fisher wrote: > [...] >> Thank you, >> so you will send your patch? I prefer last version, to make testing easier. > > I personally don't care. Feel free to fix your patch and send a new version > (but think about adding the ":" after "install" -- the character magically > disappeared when I wrote the mail). > > And don't forget the documentation part as it is always hard to remember > everything on the day the release is made, but easy when you just made the > patch. :) Corrected. From 04e5cfa522d79a2a8764ee7ce04f8d0842ee37be Mon Sep 17 00:00:00 2001 From: Alexey Fisher Date: Mon, 14 Nov 2011 11:35:13 +0100 Subject: [PATCH] add "make install" option Signed-off-by: Alexey Fisher --- Makefile | 3 +++ README | 4 ++++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 5762721..3374687 100644 --- a/Makefile +++ b/Makefile @@ -42,3 +42,6 @@ all: clean: $(MAKE) -C $(KERNELPATH) M=$(PWD) PWD=$(PWD) clean + +install: + $(MAKE) -C $(KERNELPATH) M=$(PWD) PWD=$(PWD) INSTALL_MOD_DIR=kernel/net/batman-adv/ modules_install diff --git a/README b/README index 5ba56b5..ec85dff 100644 --- a/README +++ b/README @@ -34,6 +34,10 @@ if you want to compile against some other kernel, use: # make KERNELPATH=/path/to/kernel +if you wont to install this module: + +# sudo make install + CONFIGURATION ------------- -- 1.7.5.4