forked from openfisca/openfisca-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
35 lines (27 loc) · 1.23 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
28
29
30
31
32
33
34
35
include openfisca_tasks/install.mk
include openfisca_tasks/lint.mk
include openfisca_tasks/publish.mk
include openfisca_tasks/serve.mk
include openfisca_tasks/test_code.mk
include openfisca_tasks/test_doc.mk
## To share info with the user, but no action is needed.
print_info = $$(tput setaf 6)[i]$$(tput sgr0)
## To warn the user of something, but no action is needed.
print_warn = $$(tput setaf 3)[!]$$(tput sgr0)
## To let the user know where we are in the task pipeline.
print_work = $$(tput setaf 5)[⚙]$$(tput sgr0)
## To let the user know the task in progress succeded.
## The `$1` is a function argument, passed from a task (usually the task name).
print_pass = echo $$(tput setaf 2)[✓]$$(tput sgr0) $$(tput setaf 8)$1$$(tput sgr0)$$(tput setaf 2)passed$$(tput sgr0) $$(tput setaf 1)❤$$(tput sgr0)
## Similar to `print_work`, but this will read the comments above a task, and
## print them to the user at the start of each task. The `$1` is a function
## argument.
print_help = sed -n "/^$1/ { x ; p ; } ; s/\#\#/\r$(print_work)/ ; s/\./…/ ; x" ${MAKEFILE_LIST}
## Same as `make`.
.DEFAULT_GOAL := all
## Same as `make test`.
all: test
@$(call print_pass,$@:)
## Run all lints and tests.
test: clean lint test-code
@$(call print_pass,$@:)