aboutsummaryrefslogtreecommitdiff
path: root/deps.mk
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-10-02 08:21:10 -0300
committerEuAndreh <eu@euandre.org>2024-10-02 08:33:47 -0300
commitc8f256f633d6e94839e95cafc0c18c22886bae01 (patch)
treed249e20eb5b05c1484899aa28773ce33ad2d8e12 /deps.mk
parenttests/golite.go: Add explicit "deps" variable (diff)
downloadgolite-c8f256f633d6e94839e95cafc0c18c22886bae01.tar.gz
golite-c8f256f633d6e94839e95cafc0c18c22886bae01.tar.xz
Makefile: Add fuzz target setup
Diffstat (limited to 'deps.mk')
-rw-r--r--deps.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/deps.mk b/deps.mk
index 5f458e5..9de79a9 100644
--- a/deps.mk
+++ b/deps.mk
@@ -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