1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-19 09:52:03 +08:00

makefile: add -ldflags to install and nofuse tasks

License: MIT
Signed-off-by: Lars Gierth <larsg@systemli.org>
This commit is contained in:
Lars Gierth
2015-12-14 04:27:01 +01:00
parent 4397adf51c
commit c38efdac64

View File

@ -23,13 +23,13 @@ vendor: godep
godep save -r ./...
install:
cd cmd/ipfs && go install
cd cmd/ipfs && go install -ldflags=$(ldflags)
build:
cd cmd/ipfs && go build -i -ldflags=$(ldflags)
nofuse:
cd cmd/ipfs && go install -tags nofuse
cd cmd/ipfs && go install -tags nofuse -ldflags=$(ldflags)
##############################################################
# tests targets