vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 2e4c145db901a6c92eda7962067edd453bcf75f1
parent 76828caa3baee4b9afb53f132ef56d9ff98f22d4
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Sat, 10 Oct 2020 11:25:34 +0200

test: adapt source list in Makefiles

Diffstat:
Mcore/Makefile | 2+-
Mfuzz/Makefile | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/Makefile b/core/Makefile @@ -14,7 +14,7 @@ config.h: @echo Generating ccan configuration header @${CC} ccan-config.c -o ccan-config && ./ccan-config > config.h -text-test: config.h text-test.c ../../text.c ../../text-util.c ../../text-motions.c ../../text-objects.c ../../text-regex.c ../../array.c +text-test: config.h text-test.c ../../text.c ../../text-common.c ../../text-io.c ../../text-iterator.c ../../text-util.c ../../text-motions.c ../../text-objects.c ../../text-regex.c ../../array.c @echo Compiling $@ binary @${CC} ${CFLAGS} ${CFLAGS_STD} ${CFLAGS_LIBC} ${CFLAGS_EXTRA} ${filter %.c, $^} ${SRC} ${LDFLAGS} -o $@ diff --git a/fuzz/Makefile b/fuzz/Makefile @@ -4,7 +4,7 @@ ALL = text-fuzzer text-libfuzzer buffer-fuzzer CC = afl-gcc CFLAGS += -I. -I../.. -DBUFFER_SIZE=4 -DBLOCK_SIZE=4 -TEXT_SRC = ../../text.c ../../text-util.c ../../text-motions.c ../../text-objects.c ../../text-regex.c ../../array.c +TEXT_SRC = ../../text.c ../../text-common.c ../../text-io.c ../../text-iterator.c ../../text-util.c ../../text-motions.c ../../text-objects.c ../../text-regex.c ../../array.c test: $(ALL)