diff options
author | EuAndreh <eu@euandre.org> | 2024-10-02 08:21:10 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-02 08:33:47 -0300 |
commit | c8f256f633d6e94839e95cafc0c18c22886bae01 (patch) | |
tree | d249e20eb5b05c1484899aa28773ce33ad2d8e12 /deps.mk | |
parent | tests/golite.go: Add explicit "deps" variable (diff) | |
download | golite-c8f256f633d6e94839e95cafc0c18c22886bae01.tar.gz golite-c8f256f633d6e94839e95cafc0c18c22886bae01.tar.xz |
Makefile: Add fuzz target setup
Diffstat (limited to 'deps.mk')
-rw-r--r-- | deps.mk | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -9,15 +9,21 @@ functional-tests-butone.go = \ tests/functional/libbuild.go \ tests/functional/limit.go \ +fuzz-targets.go = \ + tests/fuzz/api.go \ + tests/functional/extension.a: tests/functional/extension.go tests/functional/json.a: tests/functional/json.go tests/functional/libbuild.a: tests/functional/libbuild.go tests/functional/limit.a: tests/functional/limit.go +tests/fuzz/api.a: tests/fuzz/api.go tests/functional/extension.bin: tests/functional/extension.a tests/functional/json.bin: tests/functional/json.a tests/functional/libbuild.bin: tests/functional/libbuild.a tests/functional/limit.bin: tests/functional/limit.a +tests/fuzz/api.bin: tests/fuzz/api.a tests/functional/extension.bin-check: tests/functional/extension.bin tests/functional/json.bin-check: tests/functional/json.bin tests/functional/libbuild.bin-check: tests/functional/libbuild.bin tests/functional/limit.bin-check: tests/functional/limit.bin +tests/fuzz/api.bin-check: tests/fuzz/api.bin |