From 989d993023d06e9d6f7b67bb17f5b41763f7ce66 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sun, 9 Apr 2017 10:09:23 +0200 Subject: [PATCH] Makefile: split long lines Like everywhere else in the file, split variables assignments, with two-or-more items, on multiple lines (because it is easier to read and diff). Signed-off-by: "Yann E. MORIN" --- Makefile.am | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 8b648a1..7974a18 100644 --- a/Makefile.am +++ b/Makefile.am @@ -89,8 +89,13 @@ AM_V_GPERF_1 = .l.c: $(AM_V_LEX)$(LEXCOMPILE) -o$@ $< -BUILT_SOURCES += libs/parser/hconf.c libs/parser/lconf.c -CLEANFILES += libs/parser/hconf.c libs/parser/lconf.c libs/parser/yconf.c +BUILT_SOURCES += \ + libs/parser/hconf.c \ + libs/parser/lconf.c +CLEANFILES += \ + libs/parser/hconf.c \ + libs/parser/lconf.c \ + libs/parser/yconf.c EXTRA_DIST += \ libs/parser/hconf.c \ libs/parser/hconf.gperf.patch \ -- 2.39.2