export DEBUG = routewatch .PHONY: test fmt lint build clean run all: test test: lint go test -v ./... fmt: go fmt ./... lint: go vet ./... golangci-lint run build: go build -o bin/routewatch cmd/routewatch/main.go clean: rm -rf bin/ run: build ./bin/routewatch