mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-24 11:57:44 +08:00
10 lines
194 B
Makefile
10 lines
194 B
Makefile
all: install
|
|
commit = `git rev-parse --short HEAD`
|
|
ldflags = "-X "github.com/ipfs/go-ipfs/repo/config".CurrentCommit=$(commit)"
|
|
|
|
build:
|
|
go build -ldflags=$(ldflags)
|
|
|
|
install: build
|
|
go install
|