aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2020-09-29 09:31:33 +0200
committerMarc André Tanner <mat@brain-dump.org>2020-09-29 09:31:33 +0200
commitc1c9ef71461edd5887bf7e933a00050b0db2fdd3 (patch)
treedf30235b0163ba43bfd77b760f004fab2302a02b /core
parent74c7c01f631c7212ad62e79b1bdd3e5c394962a9 (diff)
downloadvis-c1c9ef71461edd5887bf7e933a00050b0db2fdd3.tar.gz
vis-c1c9ef71461edd5887bf7e933a00050b0db2fdd3.tar.xz
test: add array.c source dependency for core text data structure
Diffstat (limited to 'core')
-rw-r--r--core/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Makefile b/core/Makefile
index ecaac4f..ef0d8e2 100644
--- 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
+text-test: config.h text-test.c ../../text.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 $@