numtools

perform numerical operations on vectors and matrices in unix pipes
git clone git://src.adamsgaard.dk/numtools # fast
git clone https://src.adamsgaard.dk/numtools.git # slow
Log | Files | Refs | README | LICENSE Back to index

commit b66c471c38b655c9161c3d3595479fe0e94576dc
parent 087d7f25a9305063682cf564166d5a008cea6b4b
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon,  2 May 2022 13:36:43 +0200

Makefile: use consistent line continuation

Diffstat:
MMakefile | 50+++++++++++++++++++++++++-------------------------
1 file changed, 25 insertions(+), 25 deletions(-)

diff --git a/Makefile b/Makefile @@ -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 @@ -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}