Commit fbb607dc authored by Juan Benet's avatar Juan Benet

Merge pull request #2066 from ipfs/makefile-ldflags

makefile: add -ldflags to install and nofuse tasks
parents f5c8aea8 c38efdac
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment