diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2020-05-14 16:31:39 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2020-05-14 16:31:39 +0200 |
| commit | e036941abc8b17cd71db1554560ef223d5710596 (patch) | |
| tree | 2cf3d36a5b21dd945530f8df03655d4597240350 /fuzz/Makefile | |
| parent | 8f354ab3dce5ab7445bb7909f1bbc4b53716c7e5 (diff) | |
| download | vis-e036941abc8b17cd71db1554560ef223d5710596.tar.gz vis-e036941abc8b17cd71db1554560ef223d5710596.tar.xz | |
test/fuzz: add missing CFLAGS
Diffstat (limited to 'fuzz/Makefile')
| -rw-r--r-- | fuzz/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fuzz/Makefile b/fuzz/Makefile index bb05bd6..26bb10c 100644 --- a/fuzz/Makefile +++ b/fuzz/Makefile @@ -8,11 +8,11 @@ test: $(ALL) text-fuzzer: text-fuzzer.c fuzzer.h ../../text.c ../../text-util.c ../../text-motions.c ../../text-objects.c ../../text-regex.c @echo Compiling $@ binary - ${CC} ${CFLAGS} ${CFLAGS_STD} ${CFLAGS_EXTRA} ${filter %.c, $^} ${LDFLAGS} -o $@ + ${CC} ${CFLAGS} ${CFLAGS_STD} ${CFLAGS_LIBC} ${CFLAGS_EXTRA} ${filter %.c, $^} ${LDFLAGS} -o $@ buffer-fuzzer: buffer-fuzzer.c fuzzer.h ../../buffer.c @echo Compiling $@ binary - @${CC} ${CFLAGS} ${CFLAGS_STD} ${CFLAGS_EXTRA} ${filter %.c, $^} ${LDFLAGS} -o $@ + @${CC} ${CFLAGS} ${CFLAGS_STD} ${CFLAGS_LIBC} ${CFLAGS_EXTRA} ${filter %.c, $^} ${LDFLAGS} -o $@ debug: clean $(MAKE) CFLAGS_EXTRA='${CFLAGS_EXTRA} ${CFLAGS_DEBUG}' |
