mirror of
https://codeberg.org/scip/watson-starship.git
synced 2025-12-16 12:11:06 +01:00
14 lines
286 B
Makefile
14 lines
286 B
Makefile
|
|
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)
|