From patchwork Sun Jun 5 18:47:00 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sven Eckelmann X-Patchwork-Id: 16317 X-Patchwork-Delegate: sw@simonwunderlich.de Return-Path: X-Original-To: patchwork@open-mesh.org Delivered-To: patchwork@open-mesh.org Received: from open-mesh.org (localhost [IPv6:::1]) by open-mesh.org (Postfix) with ESMTP id 8868181B0D; Sun, 5 Jun 2016 20:47:28 +0200 (CEST) Authentication-Results: open-mesh.org; dmarc=none header.from=narfation.org Authentication-Results: open-mesh.org; dkim=fail reason="verification failed; unprotected key" header.d=narfation.org header.i=@narfation.org header.b=lRmZAy+F; dkim-adsp=fail (unprotected policy); dkim-atps=neutral Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=79.140.41.39; helo=v3-1039.vlinux.de; envelope-from=sven@narfation.org; receiver=b.a.t.m.a.n@lists.open-mesh.org Authentication-Results: open-mesh.org; dmarc=pass header.from=narfation.org Received: from v3-1039.vlinux.de (narfation.org [79.140.41.39]) by open-mesh.org (Postfix) with ESMTPS id EF04F81B0E for ; Sun, 5 Jun 2016 20:47:21 +0200 (CEST) Received: from sven-desktop.home.narfation.org (p4FCB293D.dip0.t-ipconnect.de [79.203.41.61]) by v3-1039.vlinux.de (Postfix) with ESMTPSA id 28B5F1100E8; Sun, 5 Jun 2016 20:47:21 +0200 (CEST) Authentication-Results: v3-1039.vlinux.de; dmarc=none header.from=narfation.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=narfation.org; s=20121; t=1465152441; bh=4Pc1iYhSCIb0bpGMKCyhJz5Nr94RwO6R5GdR8SXNBYs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lRmZAy+FIIabt1uvwqHqf8Vjn4Jj52+repGuhDjQSMxQ4ict6psyzaER5kx0fuGAo 3L7bNdCK4ksV24Oqma337NNsae5i92s2WXba9UTDRnaPcVx+aCX7lVDgshoU2I0LHL lt9kJtCOu0/kwxiUzJSJcEOHVqsCYjKPm1jGbV9A= From: Sven Eckelmann To: b.a.t.m.a.n@lists.open-mesh.org Date: Sun, 5 Jun 2016 20:47:00 +0200 Message-Id: <1465152428-17299-2-git-send-email-sven@narfation.org> X-Mailer: git-send-email 2.8.1 In-Reply-To: <1465152428-17299-1-git-send-email-sven@narfation.org> References: <1465152428-17299-1-git-send-email-sven@narfation.org> Cc: Sven Eckelmann Subject: [B.A.T.M.A.N.] [PATCH 02/10] alfred: Split list of objects in Makefile into separate lines X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking Errors-To: b.a.t.m.a.n-bounces@lists.open-mesh.org Sender: "B.A.T.M.A.N" From: Sven Eckelmann The line of objects which are required to compile alfred gets longer and becomes harder to read. Instead save each object on its own line to make it easier to edit and easier to solve conflicts when multiple patches modify the list of objects. Signed-off-by: Sven Eckelmann --- Makefile | 12 +++++++++++- gpsd/Makefile | 2 +- vis/Makefile | 3 ++- 3 files changed, 14 insertions(+), 3 deletions(-) mode change 100644 => 100755 Makefile mode change 100644 => 100755 gpsd/Makefile mode change 100644 => 100755 vis/Makefile diff --git a/Makefile b/Makefile old mode 100644 new mode 100755 index 939e9f8..1c364f7 --- a/Makefile +++ b/Makefile @@ -20,7 +20,17 @@ # alfred build BINARY_NAME = alfred -OBJ = main.o server.o client.o netsock.o send.o recv.o hash.o unix_sock.o util.o debugfs.o batadv_query.o +OBJ += batadv_query.o +OBJ += client.o +OBJ += debugfs.o +OBJ += hash.o +OBJ += main.o +OBJ += netsock.o +OBJ += recv.o +OBJ += send.o +OBJ += server.o +OBJ += unix_sock.o +OBJ += util.o MANPAGE = man/alfred.8 # alfred flags and options diff --git a/gpsd/Makefile b/gpsd/Makefile old mode 100644 new mode 100755 index 72e4445..bae5660 --- a/gpsd/Makefile +++ b/gpsd/Makefile @@ -20,7 +20,7 @@ # alfred-gpsd build BINARY_NAME = alfred-gpsd -OBJ = alfred-gpsd.o +OBJ += alfred-gpsd.o MANPAGE = man/alfred-gpsd.8 # alfred flags and options diff --git a/vis/Makefile b/vis/Makefile old mode 100644 new mode 100755 index accd1fa..52ca981 --- a/vis/Makefile +++ b/vis/Makefile @@ -20,7 +20,8 @@ # batadv-vis build BINARY_NAME = batadv-vis -OBJ = vis.o debugfs.o +OBJ += debugfs.o +OBJ += vis.o MANPAGE = man/batadv-vis.8 # batadv-vis flags and options