dijkstra/Makefile
2020-12-20 16:18:34 +01:00

11 lines
154 B
Makefile

.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