-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
27 lines (18 loc) · 1.06 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.PHONY: run build test clean
run:
echo "This target must always start a development execution of the software"
build:
echo "This target must always build a production version of the software"
test:
echo "This target must always run the test suite and return an exit code of 0 if all tests pass, or 1 if any test fails"
clean:
echo "This target must always clean up any temporary files created by the build process"
fmt:
echo "This target must always format the code according to project standards. This target must modify the source code in place."
fmt-ci:
echo "This target must return an exit code of 0 if there is nothing to format, and 1 if there is something to format. This target must not modify the source code in place."
lint:
echo "This target must always lint the code according to project standards. This target must modify the source code in place."
lint-ci:
echo "This target must return an exit code of 0 if there is nothing to lint, and 1 if there is something to lint. This target must not modify the source code in place."
ci: fmt-ci lint-ci test