11 lines
154 B
Makefile
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
|