1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-21 03:28:56 +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 ./... godep save -r ./...
install: install:
cd cmd/ipfs && go install cd cmd/ipfs && go install -ldflags=$(ldflags)
build: build:
cd cmd/ipfs && go build -i -ldflags=$(ldflags) cd cmd/ipfs && go build -i -ldflags=$(ldflags)
nofuse: nofuse:
cd cmd/ipfs && go install -tags nofuse cd cmd/ipfs && go install -tags nofuse -ldflags=$(ldflags)
############################################################## ##############################################################
# tests targets # tests targets