feat: xmnt

This commit is contained in:
Yiyang Kang 2022-10-07 01:19:04 +08:00
parent 00b3e4b24f
commit 5a998b713c
16 changed files with 1481 additions and 0 deletions

12
Makefile Normal file
View file

@ -0,0 +1,12 @@
BIN_NAME := xmnt
build:
CGO_ENABLED=0 go build -trimpath -ldflags '-s -w' -o "$(BIN_NAME)"
install: build
install -vDt "${HOME}/.local/bin" "$(BIN_NAME)"
clean:
rm -vf "$(BIN_NAME)"
.PHONY: build install clean