Skip to content

Commit a13454d

Browse files
authored
add command all to Makefile (#236)
1 parent fd098b3 commit a13454d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,13 @@ format:
1212
test:
1313
${JULIA} --project -e 'using Pkg; Pkg.resolve(); Pkg.test()'
1414

15+
all: format test docs
16+
1517
help:
1618
@echo "The following make commands are available:"
1719
@echo " - make docs: instantiate and build the documentation"
1820
@echo " - make format: format codes with JuliaFormatter"
1921
@echo " - make test: run the tests"
22+
@echo " - make all: run every commands above"
2023

21-
.PHONY: default docs format test help
24+
.PHONY: default docs format test all help

0 commit comments

Comments
 (0)