maint: makefile

This commit is contained in:
vxclutch
2026-05-27 09:47:54 -04:00
parent 3c0f1a046c
commit fb7d0ee80d
5 changed files with 22 additions and 5 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
GO?= go
.PHONY: build lint
all: build
build:
$(GO) build -o lash ./cmd/lash/
lint:
$(GO) fmt ./...
$(GO) vet ./...