feat: xmnt
This commit is contained in:
parent
00b3e4b24f
commit
5a998b713c
16 changed files with 1481 additions and 0 deletions
12
Makefile
Normal file
12
Makefile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue