Skip to content

Commit

Permalink
Makefile: No fuzzer for lint__stubs.c
Browse files Browse the repository at this point in the history
  • Loading branch information
terryburton committed Oct 13, 2024
1 parent 9ba7d5b commit 7b30da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ FUZZER_LINTERS_SRC = $(NAME)-fuzzer-linters.c
#FUZZER_SRCS = $(FUZZER_LINTERS_SRC) $(NAME)-fuzzer-parser.c
FUZZER_SRCS = $(FUZZER_LINTERS_SRC)

FUZZER_LINTERS = $(patsubst %.c,%,$(wildcard lint_*.c))
FUZZER_LINTERS = $(patsubst %.c,%,$(filter-out lint__stubs.c,$(wildcard lint_*.c)))

FUZZER_PREFIX = $(NAME)-fuzzer-
#FUZZER_BINS = $(addprefix $(BUILD_DIR)/$(FUZZER_PREFIX),$(FUZZER_LINTERS)) $(BUILD_DIR)/$(FUZZER_PREFIX)parser
Expand Down

0 comments on commit 7b30da0

Please sign in to comment.