.PHONY: build SRC=$(shell find ./ -name *.go -type f) build: $(SRC) @go build -o bin/resolve cmd/resolve.go run: build @./bin/resolve -i graph.hcl