.PHONY: build install

build:
	stack build

install:
	stack install

# Testing
.PHONY: test test-all test-default test-%

test-all: test-default test-7.10.3 test-7.8.4

test: test-default

test-default:
	stack clean
	stack test

test-%:
	stack --stack-yaml stack-$*.yaml clean
	stack --stack-yaml stack-$*.yaml test
