mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
60ab8e2ae3
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/7051 GitOrigin-RevId: dca45b31608680bf57a2dd190171b2567e1fcb02
17 lines
431 B
Makefile
17 lines
431 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/tests.mk
|
|
include ./scripts/make/test-infrastructure.mk
|