GO?= go

.PHONY: build lint

all: build

build:
	$(GO) build -o lash ./cmd/lash/

lint:
	$(GO) fmt ./...
	$(GO) vet ./...
