We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 671556b commit d18397fCopy full SHA for d18397f
Makefile
@@ -112,6 +112,13 @@ go-install:
112
@$(call print, "Installing lightning-terminal.")
113
$(GOINSTALL) -tags="$(LND_RELEASE_TAGS)" -ldflags "$(LDFLAGS)" $(PKG)/cmd/litd
114
115
+go-install-cli:
116
+ @$(call print, "Installing all CLI binaries.")
117
+ $(GOINSTALL) -trimpath -tags="$(LND_RELEASE_TAGS)" -ldflags "$(LDFLAGS)" github.com/lightningnetwork/lnd/cmd/lncli
118
+ $(GOINSTALL) -trimpath -ldflags "$(LDFLAGS)" github.com/lightninglabs/loop/cmd/loop
119
+ $(GOINSTALL) -trimpath github.com/lightninglabs/faraday/cmd/frcli
120
+ $(GOINSTALL) -trimpath github.com/lightninglabs/pool/cmd/pool
121
+
122
app-build: yarn-install
123
@$(call print, "Building production app.")
124
cd app; yarn build
0 commit comments