diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..34532f8 --- /dev/null +++ b/Makefile @@ -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"