all: build run

run:
	@stack exec existentials

setup:
	@stack setup

build:
	@stack build

test:
	@stack test

install:
	@stack install


clean:
	@stack clean

.PHONY: all build run clean install test
