Skip to content

Commit

Permalink
build: list source files on separate lines
Browse files Browse the repository at this point in the history
  • Loading branch information
martanne committed Oct 10, 2020
1 parent 70a8f73 commit a889c06
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a889c06

Please sign in to comment.