From: Yann E. MORIN Date: Sun, 9 Apr 2017 08:09:23 +0000 (+0200) Subject: Makefile: split long lines X-Git-Tag: v4.11.0.0~5 X-Git-Url: https://git.sur5r.net/?p=kconfig-frontends;a=commitdiff_plain;h=989d993023d06e9d6f7b67bb17f5b41763f7ce66 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" --- 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 \