mirror of
https://github.com/Airsequel/AirGQL.git
synced 2025-06-23 19:21:14 +02:00
33 lines
442 B
Makefile
33 lines
442 B
Makefile
.PHONY: test
|
|
test:
|
|
stack \
|
|
--stack-yaml stack-standalone.yaml \
|
|
test
|
|
|
|
|
|
.PHONY: install
|
|
install:
|
|
stack \
|
|
--stack-yaml stack-standalone.yaml \
|
|
install
|
|
|
|
|
|
.PHONY: docs
|
|
docs:
|
|
stack \
|
|
--stack-yaml stack-standalone.yaml \
|
|
haddock \
|
|
--haddock-for-hackage
|
|
|
|
|
|
.PHONY: release
|
|
release: docs
|
|
stack \
|
|
--stack-yaml stack-standalone.yaml \
|
|
upload \
|
|
.
|
|
stack \
|
|
--stack-yaml stack-standalone.yaml \
|
|
upload \
|
|
--documentation \
|
|
.
|