mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 10:57:42 +08:00
16 lines
210 B
Makefile
16 lines
210 B
Makefile
all: install
|
|
|
|
build:
|
|
go build
|
|
|
|
install: build
|
|
go install
|
|
|
|
# cpu profiling: `go tool pprof ipfs cpu.prof`
|
|
# mem profiling: `go tool pprof ipfs ipfs.mprof`
|
|
|
|
clean:
|
|
rm -f cpu.prof
|
|
rm -f ipfs.mprof
|
|
rm -f ipfs
|