From 0ad4234b7b23d3d7bf764f5aa70acadbd596f31f Mon Sep 17 00:00:00 2001 From: Yi-Te Huang <44385685+ytdHuang@users.noreply.github.com> Date: Fri, 27 Sep 2024 20:37:52 +0800 Subject: [PATCH] add command `all` to Makefile (#236) --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 920c480f..1da02514 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,13 @@ format: test: ${JULIA} --project -e 'using Pkg; Pkg.resolve(); Pkg.test()' +all: format test docs + help: @echo "The following make commands are available:" @echo " - make docs: instantiate and build the documentation" @echo " - make format: format codes with JuliaFormatter" @echo " - make test: run the tests" + @echo " - make all: run every commands above" -.PHONY: default docs format test help \ No newline at end of file +.PHONY: default docs format test all help \ No newline at end of file