makefile: update install directive to just use go install

This commit is contained in:
Olaoluwa Osuntokun 2018-03-31 16:25:16 -07:00
parent 29c9d78c63
commit 72e59077ba
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

@ -130,8 +130,8 @@ build:
install:
@$(call print, "Installing lnd and lncli.")
$(CP) ./lnd $(LND_BIN)
$(CP) ./lncli $(LNCLI_BIN)
go install -v $(LDFLAGS) $(PKG)
go install -v $(LDFLAGS) $(PKG)/cmd/lncli
scratch: dep build