Files
racket-webview/Makefile
2026-04-09 13:39:23 +02:00

12 lines
328 B
Makefile

all:
@echo "oke"
clean:
find . -name "*.rkt~" -type f -exec rm -f {} \;
find . -name "*.scrbl~" -type f -exec rm -f {} \;
DIRS=`find . -name "compiled" -type d`;rm -rf $$DIRS
find scrbl -name "*.html" -type f -exec rm {} \;
find scrbl -name "*.css" -type f -exec rm {} \;
find scrbl -name "*.js" -type f -exec rm {} \;