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
|
2023-03-23 18:14:39 +03:00
|
|
|
include ./scripts/make/frontend.mk
|
2022-11-25 18:44:04 +03:00
|
|
|
include ./scripts/make/ghcid.mk
|
|
|
|
include ./scripts/make/legacy-tests.mk
|
2022-07-22 13:56:03 +03:00
|
|
|
include ./scripts/make/lint.mk
|
2023-02-15 21:36:25 +03:00
|
|
|
include ./scripts/make/metadata-api.mk
|
2023-03-21 12:45:46 +03:00
|
|
|
include ./scripts/make/repl.mk
|
2023-03-09 15:03:34 +03:00
|
|
|
include ./scripts/make/run.mk
|
2022-07-22 13:56:03 +03:00
|
|
|
include ./scripts/make/tests.mk
|
2022-11-25 18:44:04 +03:00
|
|
|
include ./scripts/make/test-infrastructure.mk
|