From 3a573068183aad1ff2938c051fb7fc54fc526dcb Mon Sep 17 00:00:00 2001 From: dreamer Date: Sat, 1 Jun 2024 21:49:01 +0200 Subject: [PATCH] add make clean command --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index d0fde5f..ce9aab4 100644 --- a/Makefile +++ b/Makefile @@ -10,3 +10,6 @@ html: hvcc hvcc: $(foreach var, $(PLUGINS), hvcc js_$(var).pd -n $(var) -o $(var) -g js -p examples examples/heavylib;) + +clean: + $(foreach var, $(PLUGINS), rm -rf _site/$(var);)