Repository : ssh://git@open-mesh.org/alfred
On branch : master
commit 3ac5090b149a820299166d12ac56a45f24cfae6a Author: Sven Eckelmann sven.eckelmann@open-mesh.com Date: Sun Jun 5 20:47:00 2016 +0200
alfred: Split list of objects in Makefile into separate lines
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 sven.eckelmann@open-mesh.com Signed-off-by: Simon Wunderlich sw@simonwunderlich.de
3ac5090b149a820299166d12ac56a45f24cfae6a Makefile | 12 +++++++++++- gpsd/Makefile | 2 +- vis/Makefile | 3 ++- 3 files changed, 14 insertions(+), 3 deletions(-)
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