dijkstra/Makefile

11 lines
154 B
Makefile
Raw Permalink Normal View History

.PHONY: build
2020-12-20 15:18:34 +00:00
SRC=$(shell find ./ -name *.go -type f)
build: $(SRC)
@go build -o bin/resolve cmd/resolve.go
run: build
@./bin/resolve -i graph.hcl