2022-07-22 13:56:03 +03:00
|
|
|
SHELL := bash -e -u -o pipefail
|
|
|
|
|
2021-09-24 00:22:27 +03:00
|
|
|
# default target
|
|
|
|
.PHONY: help
|
|
|
|
## help: prints help message
|
|
|
|
help:
|
|
|
|
@echo "Usage:"
|
|
|
|
@sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /'
|
|
|
|
|
2022-07-04 14:44:15 +03:00
|
|
|
include ./scripts/make/build.mk
|
2022-11-25 18:44:04 +03:00
|
|
|
include ./scripts/make/ci.mk
|
|
|
|
include ./scripts/make/ghcid.mk
|
|
|
|
include ./scripts/make/legacy-tests.mk
|
2022-07-22 13:56:03 +03:00
|
|
|
include ./scripts/make/lint.mk
|
|
|
|
include ./scripts/make/tests.mk
|
2022-11-25 18:44:04 +03:00
|
|
|
include ./scripts/make/test-infrastructure.mk
|