xmnt/Makefile

13 lines
217 B
Makefile
Raw Normal View History

2022-10-07 02:19:04 +09:00
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