Files
mruby-mruby/Makefile
T
2022-09-17 23:23:35 +10:00

20 lines
243 B
Makefile

# mruby is using Rake (https://ruby.github.io/rake/) as a build tool.
RAKE = rake
all :
$(RAKE)
.PHONY : all
test : all
$(RAKE) test
.PHONY : test
clean :
$(RAKE) clean
.PHONY : clean
check :
pre-commit run --all-files
.PHONY : check