[ruby/mmtk] Add target clean-mmtk to clean Rust debug and release directories

https://github.com/ruby/mmtk/commit/1f71cb873c
This commit is contained in:
Peter Zhu 2024-12-09 13:34:44 -05:00 committed by git
parent 14e0a40cd0
commit ea7e34fd5d

View File

@ -32,6 +32,12 @@ makefile << <<~'MAKEFILE'
exit 1 \ exit 1 \
;; \ ;; \
esac esac
clean: clean-mmtk
.PHONY: clean-mmtk
clean-mmtk:
-$(Q)$(RM_RF) debug release
MAKEFILE MAKEFILE
File.open("Makefile", "w") { |file| file.puts(makefile) } File.open("Makefile", "w") { |file| file.puts(makefile) }