From f57eae9624c533cb361f24719db28cf687bd6851 Mon Sep 17 00:00:00 2001 From: Shaun Inman Date: Sat, 4 Feb 2023 20:25:36 -0500 Subject: [PATCH] added clean and nuke targets to cores makefile --- cores/makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cores/makefile b/cores/makefile index 09633de..f390e74 100644 --- a/cores/makefile +++ b/cores/makefile @@ -75,4 +75,10 @@ all: cores $(foreach CORE,$(CORES),$(eval $(call TEMPLATE,$(CORE)))) -cores: $(foreach CORE,$(CORES),$(CORE)) \ No newline at end of file +cores: $(foreach CORE,$(CORES),$(CORE)) + +clean: $(foreach CORE,$(CORES),clean-$(CORE)) + +nuke: + rm -rf ./output + rm -rf ./src \ No newline at end of file