mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
15 lines
299 B
Makefile
15 lines
299 B
Makefile
BRANCH := `git rev-parse --abbrev-ref HEAD`
|
|
|
|
.PHONY: dependencies install run
|
|
|
|
dependencies:
|
|
go get -v ./...
|
|
|
|
install:
|
|
which wtf | xargs rm || true
|
|
go install -ldflags="-X main.version=$(shell git describe --always --abbrev=6)_$(BRANCH) -X main.date=$(shell date +%FT%T%z)"
|
|
which wtf
|
|
|
|
run:
|
|
wtf
|