gspot/Makefile
abs3nt 7ecb57a8fd
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
build
2024-02-18 10:10:42 -08:00

24 lines
569 B
Makefile

build: gospt-ng
gospt-ng: $(shell find . -name '*.go')
go build -ldflags="-X 'git.asdf.cafe/abs3nt/gospt-ng/src/components/cli.Version=$(shell git rev-parse --short HEAD)'" -o dist/ .
run:
go run main.go
tidy:
go mod tidy
clean:
rm -rf bin
uninstall:
rm -f /usr/bin/gospt-ng
rm -f /usr/share/zsh/site-functions/_gospt-ng
rm -f /usr/share/bash-completion/completions/gospt-ng
install:
cp ./dist/gospt-ng /usr/bin
cp ./completions/_gospt-ng /usr/share/zsh/site-functions/_gospt-ng
cp ./completions/gospt-ng /usr/share/bash-completion/completions/gospt-ng