Files

14 lines
286 B
Makefile
Raw Permalink Normal View History

2025-03-07 12:22:35 +01:00
tool = watson-starship
all: buildlocal
buildlocal:
CGO_LDFLAGS='-static' go build -tags osusergo,netgo -ldflags "-extldflags=-static -w" --trimpath -buildmode=pie -o $(tool)
strip --strip-all $(tool)
install: buildlocal
install -m 755 $(tool) $(HOME)/bin/
clean:
rm -rf $(tool)