init commit

This commit is contained in:
ysandler
2026-01-22 23:03:49 -06:00
commit 1eae04fc60
21 changed files with 1688 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
VERSION := $(shell cat VERSION)
LDFLAGS := -ldflags "-X github.com/yeho/doks/cmd.Version=$(VERSION)"
.PHONY: build install clean
build:
go build $(LDFLAGS) -o doks
install:
go install $(LDFLAGS)
clean:
rm -f doks