This commit is contained in:
2026-02-17 18:06:18 +01:00
parent f0917d9dcd
commit 111042442f

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
all:
@echo "Use 'make clean' to cleanup racket backup files"
clean:
@find . -type f -name "*~" -exec rm -f {} \;
@rm -f scribblings/*.css scribblings/*.html scribblings/*.js
@DIRS=`find . -type d -name "compiled"`; echo $$DIRS; rm -rf $$DIRS
@echo "Cleaned"