mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
eba0a3fb33
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8404 GitOrigin-RevId: 163ee869d436b29f3563a7ec3294f0786b32f19c
20 lines
531 B
Makefile
20 lines
531 B
Makefile
SHELL := bash -e -u -o pipefail
|
|
|
|
# default target
|
|
.PHONY: help
|
|
## help: prints help message
|
|
help:
|
|
@echo "Usage:"
|
|
@sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /'
|
|
|
|
include ./scripts/make/build.mk
|
|
include ./scripts/make/ci.mk
|
|
include ./scripts/make/ghcid.mk
|
|
include ./scripts/make/legacy-tests.mk
|
|
include ./scripts/make/lint.mk
|
|
include ./scripts/make/metadata-api.mk
|
|
include ./scripts/make/repl.mk
|
|
include ./scripts/make/run.mk
|
|
include ./scripts/make/tests.mk
|
|
include ./scripts/make/test-infrastructure.mk
|