.PHONY: help
help: makefile
	@tail -n +4 makefile | grep ".PHONY"


.PHONY: test
test:
	stack test


.PHONY: build
build:
	stack build


.PHONY: install
install:
	stack install
