tMakefile: use consistent line continuation - numtools - perform numerical operations on vectors and matrices in unix pipes
 (HTM) git clone git://src.adamsgaard.dk/numtools
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit b66c471c38b655c9161c3d3595479fe0e94576dc
 (DIR) parent 087d7f25a9305063682cf564166d5a008cea6b4b
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Mon,  2 May 2022 13:36:43 +0200
       
       Makefile: use consistent line continuation
       
       Diffstat:
         M Makefile                            |      50 ++++++++++++++++----------------
       
       1 file changed, 25 insertions(+), 25 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       t@@ -8,31 +8,31 @@ PREFIX = /usr/local
        MANPREFIX = ${PREFIX}/man
        DOCPREFIX = ${PREFIX}/share/doc/${NAME}
        
       -BIN =\
       -        max\
       -        mean\
       -        min\
       -        range\
       -        rangetest\
       -        sum\
       -        transpose\
       -
       -SCRIPTS =\
       -        histpdf\
       -
       -SRC =\
       -        util.c
       -
       -COMPATSRC =\
       -        strnlen.c\
       -        strlcpy.c\
       -        xreallocarray.c\
       +BIN = \
       +        max \
       +        mean \
       +        min \
       +        range \
       +        rangetest \
       +        sum \
       +        transpose \
       +
       +SCRIPTS = \
       +        histpdf \
       +
       +SRC = \
       +        util.c \
       +
       +COMPATSRC = \
       +        strnlen.c \
       +        strlcpy.c \
       +        xreallocarray.c \
        
        COMPATOBJ = ${COMPATSRC:.c=.o}
        
       -HDR =\
       -        arg.h\
       -        util.h\
       +HDR = \
       +        arg.h \
       +        util.h \
        
        LIB = ${COMPATOBJ}
        LIBS = -lm
       t@@ -42,9 +42,9 @@ _LDFLAGS = ${LDFLAGS} ${LIBS}
        _CPPFLAGS = ${CPPFLAGS} -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=700 -D_BSD_SOURCE
        
        MAN1 = ${BIN:=.1} ${SCRIPTS:=.1}
       -DOC =\
       -        LICENSE\
       -        README\
       +DOC = \
       +        LICENSE \
       +        README \
        
        all: ${BIN}