From 23465f06df91fa5930d740a60c7c11991ef36d3b Mon Sep 17 00:00:00 2001 From: fanquake Date: Thu, 7 Nov 2024 11:43:51 +0000 Subject: [PATCH] build: add all-fuzz-programs target Add a convenience target for building, but not running (i.e check-fuzz), all fuzz targets. Signed-off-by: fanquake --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 53539a6b0..0a0ac9b33 100644 --- a/Makefile +++ b/Makefile @@ -694,6 +694,7 @@ update-ccan: # Now ALL_PROGRAMS is fully populated, we can expand it. all-programs: $(ALL_PROGRAMS) +all-fuzz-programs: $(ALL_FUZZ_TARGETS) all-test-programs: $(ALL_TEST_PROGRAMS) $(ALL_FUZZ_TARGETS) default-targets: $(DEFAULT_TARGETS)