mirror of
https://github.com/ipfs/kubo.git
synced 2025-05-17 06:57:40 +08:00
18 lines
271 B
Makefile
18 lines
271 B
Makefile
|
|
|
|
ifeq (,$(wildcard .tarball))
|
|
tarball-is:=0
|
|
else
|
|
tarball-is:=1
|
|
# override git hash
|
|
git-hash:=$(shell cat .tarball)
|
|
endif
|
|
|
|
GOCC ?= go
|
|
|
|
go-ipfs-source.tar.gz: distclean
|
|
GOCC=$(GOCC) bin/maketarball.sh $@
|
|
|
|
kubo-source.tar.gz: distclean
|
|
GOCC=$(GOCC) bin/maketarball.sh $@
|