Commit 378c604 1 parent 55f897f commit 378c604 Copy full SHA for 378c604
File tree 1 file changed +10
-10
lines changed
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -5,34 +5,34 @@ ARGS=""
5
5
6
6
default : fmt
7
7
$(CC ) build
8
- @make example
9
8
10
9
doc-deps :
11
10
$(CC ) install mdbook
12
11
13
12
fmt :
14
13
$(CC ) fmt --all
15
14
16
- check :
15
+ check : # # Runs unit testing
17
16
$(CC ) test $(ARGS )
18
17
19
- example :
20
- @echo " No example for the moment"
21
-
22
- clean :
18
+ clean : # # Clean up everythings
23
19
$(CC ) clean
24
20
25
- book :
21
+ book : # # Build the release version of documentation
26
22
cd docs/docs-book; mdbook build
27
23
28
- dev-book :
24
+ dev-book : # # Build the docs in dev mode
29
25
cd docs/docs-book; mdbook serve --open
30
26
31
- install :
27
+ install : # # Install coffee inside the local machine
32
28
$(CC ) install --locked --path ./coffee_cmd
33
29
34
- integration : default
30
+ integration : default # # Runs integration testing
35
31
$(CC ) test -j 4 -p tests $(ARGS )
36
32
37
33
setup :
38
34
git config core.hooksPath .githooks
35
+
36
+ help : # # Show Help
37
+ @grep --no-filename -E ' ^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST ) | \
38
+ awk ' BEGIN {FS = ":.*?## "}; {printf "\033[32m%-15s\033[0m %s\n", $$1, $$2}'
You can’t perform that action at this time.
0 commit comments