Files
mruby-mruby/Makefile
T
John Bampton 72f22afc99 Makefile/Rakefile: add checkupdate target
Runs `pre-commit autoupdate`
2022-10-26 12:04:59 +10:00

24 lines
302 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
checkupdate :
pre-commit autoupdate
.PHONY : checkupdate