.PHONY: format lintSOURCES = $(shell find . -type f -name '*.hs')format: for file in $(SOURCES); do echo "Formatting $$file"; fourmolu -i "$$file"; donelint: hlint -g -XQuasiQuotes