java/makefile

10 lines
261 B
Makefile
Raw Permalink Normal View History

2025-09-13 05:34:08 +08:00
purge:
find . -name "*.class" -type f -delete
# Windows Command Powershell:
purge_windows:
powershell -Command "Get-ChildItem -Recurse -Include *.class,*.log,*.tmp,*~ | Remove-Item -Force"
# Linux Command
purge_linux:
find . -name "*.class" -type f -delete