Re: RFC: split OBJS lines to one object per line

Michael Paquier <michael@paquier.xyz>

From: Michael Paquier <michael@paquier.xyz>
To: Andres Freund <andres@anarazel.de>
Cc: Tom Lane <tgl@sss.pgh.pa.us>, Peter Geoghegan <pg@bowt.ie>, pgsql-hackers@postgresql.org
Date: 2019-10-30T07:40:45Z
Lists: pgsql-hackers
On Tue, Oct 29, 2019 at 11:32:09PM -0700, Andres Freund wrote:
> Cool. Any opinion on whether to got for
> 
> OBJS = \
> 	dest.o \
> 	fastpath.o \
> ...
> 
> or
> 
> OBJS = dest.o \
> 	fastpath.o \
> ...
> 
> I'm mildly inclined to go for the former.

FWIW, I am more used to the latter, but the former is also fine by
me.
--
Michael

Commits

  1. Fix some OBJS lists in two Makefiles to be ordered alphabetically

  2. Split all OBJS style lines in makefiles into one-line-per-entry style.