From aedae6201b2e328baf557f1417bb5c83615ca640 Mon Sep 17 00:00:00 2001 From: Nathaniel Brough Date: Thu, 27 Oct 2022 22:56:31 +0000 Subject: fuzz: Add support for fuzzing Adds support for fuzzing with basic cdc fuzzer. --- fuzz/device/cdc/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 fuzz/device/cdc/Makefile (limited to 'fuzz/device/cdc/Makefile') diff --git a/fuzz/device/cdc/Makefile b/fuzz/device/cdc/Makefile new file mode 100644 index 000000000..76a43923f --- /dev/null +++ b/fuzz/device/cdc/Makefile @@ -0,0 +1,12 @@ +include ../../../tools/top.mk +include ../../make.mk + +INC += \ + src \ + $(TOP)/hw \ + +# Example source +SRC_C += $(addprefix $(CURRENT_PATH)/, $(wildcard src/*.c)) +SRC_CXX += $(addprefix $(CURRENT_PATH)/, $(wildcard src/*.cc)) + +include ../../rules.mk -- cgit v1.3.1