all: build clean: @stack exec cooking clean > /dev/null 2>&1 || true @stack clean > /dev/null install: @stack setup .PHONY: build build: @stack build @stack exec cooking build watch: @nodemon --watch src -e hs --exec 'make watch-command --silent' watch-command: @(killall cooking || :) && sleep 1 && stack build && stack exec cooking watch