From a889c06ffe1bae1659a976d812c76433e6b69e51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Sat, 10 Oct 2020 10:05:47 +0200 Subject: build: list source files on separate lines --- Makefile | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 7a08d86..4ef67fc 100644 --- a/Makefile +++ b/Makefile @@ -2,10 +2,28 @@ REGEX_SRC ?= text-regex.c -SRC = array.c buffer.c libutf.c main.c map.c \ - sam.c text.c text-motions.c text-objects.c text-util.c \ - ui-terminal.c view.c vis.c vis-lua.c vis-modes.c vis-motions.c \ - vis-operators.c vis-registers.c vis-marks.c vis-prompt.c vis-text-objects.c $(REGEX_SRC) +SRC = array.c \ + buffer.c \ + libutf.c \ + main.c \ + map.c \ + sam.c \ + text.c \ + text-motions.c \ + text-objects.c \ + text-util.c \ + ui-terminal.c \ + view.c \ + vis.c \ + vis-lua.c \ + vis-marks.c \ + vis-modes.c \ + vis-motions.c \ + vis-operators.c \ + vis-prompt.c \ + vis-registers.c \ + vis-text-objects.c \ + $(REGEX_SRC) ELF = vis vis-menu vis-digraph EXECUTABLES = $(ELF) vis-clipboard vis-complete vis-open -- cgit v1.2.3