GO?= go

.PHONY: build lint

all: build

build:
	$(GO) build -o lash ./bin/main.go

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