aboutsummaryrefslogtreecommitdiff
path: root/fuzz/Makefile
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 /fuzz/Makefile
parent74c7c01f631c7212ad62e79b1bdd3e5c394962a9 (diff)
downloadvis-c1c9ef71461edd5887bf7e933a00050b0db2fdd3.tar.gz
vis-c1c9ef71461edd5887bf7e933a00050b0db2fdd3.tar.xz
test: add array.c source dependency for core text data structure
Diffstat (limited to 'fuzz/Makefile')
-rw-r--r--fuzz/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/Makefile b/fuzz/Makefile
index dd1c376..5be605d 100644
--- 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
+TEXT_SRC = ../../text.c ../../text-util.c ../../text-motions.c ../../text-objects.c ../../text-regex.c ../../array.c
test: $(ALL)