mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 02:47:48 +08:00
10 lines
230 B
Makefile
10 lines
230 B
Makefile
all: install
|
|
commit = $(shell git rev-parse --short HEAD 2> /dev/null || echo unknown)
|
|
ldflags = "-X "github.com/ipfs/go-ipfs/repo/config".CurrentCommit=$(commit)"
|
|
|
|
build:
|
|
go build -ldflags=$(ldflags)
|
|
|
|
install: build
|
|
go install
|