Skip to content

Commit ab5e15a

Browse files
committed
Enhancement: Add Makefile
1 parent fe57ff9 commit ab5e15a

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.editorconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,9 @@ charset = utf-8
88
indent_size = 2
99
indent_style = space
1010
trim_trailing_whitespace = true
11+
12+
[Makefile]
13+
charset = utf-8
14+
indent_size = 4
15+
indent_style = tab
16+
trim_trailing_whitespace = true

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.PHONY: help
2+
help: ## Displays this list of targets with descriptions
3+
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'
4+
5+
.PHONY: tests
6+
tests: ## Runs tests
7+
php tests/run-tests.php -j3 -q

0 commit comments

Comments
 (0)