From f75e1e132292e82b9228ab46866bbb127abff92b Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Wed, 9 Jan 2019 10:40:54 -0800 Subject: [PATCH] scoutfs: reformat Makefile to one object per line Reformat the scoutfs-y object list so that there's one object per line. Diffs now clearly demonstrate what is changing instead of having word wrapping constantly obscuring changes in the built objects. (Did everyone spot the scoutfs_trace sorting mistake? Another reason not to mash everything into wrapped lines :)). Signed-off-by: Zach Brown --- kmod/src/Makefile | 37 ++++++++++++++++++++++++++++++++----- 1 file changed, 32 insertions(+), 5 deletions(-) diff --git a/kmod/src/Makefile b/kmod/src/Makefile index f804c121..24cf93fe 100644 --- a/kmod/src/Makefile +++ b/kmod/src/Makefile @@ -5,11 +5,38 @@ CFLAGS_super.o = -DSCOUTFS_GIT_DESCRIBE=\"$(SCOUTFS_GIT_DESCRIBE)\" \ CFLAGS_scoutfs_trace.o = -I$(src) # define_trace.h double include -scoutfs-y += bio.o block.o btree.o client.o compact.o counters.o data.o dir.o \ - export.o extents.o file.o inode.o ioctl.o item.o lock.o \ - manifest.o msg.o net.o options.o per_task.o seg.o server.o \ - scoutfs_trace.o sort_priv.o spbm.o super.o sysfs.o trans.o \ - triggers.o tseq.o xattr.o +scoutfs-y += \ + bio.o \ + block.o \ + btree.o \ + client.o \ + compact.o \ + counters.o \ + data.o \ + dir.o \ + export.o \ + extents.o \ + file.o \ + inode.o \ + ioctl.o \ + item.o \ + lock.o \ + manifest.o \ + msg.o \ + net.o \ + options.o \ + per_task.o \ + scoutfs_trace.o \ + seg.o \ + server.o \ + sort_priv.o \ + spbm.o \ + super.o \ + sysfs.o \ + trans.o \ + triggers.o \ + tseq.o \ + xattr.o # # The raw types aren't available in userspace headers. Make sure all