Skip to content

Commit

Permalink
makefile: add -ldflags to install and nofuse tasks
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Lars Gierth <larsg@systemli.org>
  • Loading branch information
Lars Gierth committed Dec 14, 2015
1 parent 4397adf commit c38efda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c38efda

Please sign in to comment.