File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -148,15 +148,22 @@ go-install-noui:
148148 $(GOINSTALL ) -tags=" litd_no_ui $( LND_RELEASE_TAGS) " -ldflags " $( LDFLAGS) " $(PKG ) /cmd/litd
149149 $(GOINSTALL ) -tags=" litd_no_ui $( LND_RELEASE_TAGS) " -ldflags " $( LDFLAGS) " $(PKG ) /cmd/litcli
150150
151- go-install-cli :
151+ go-install-cli-nolit :
152152 @$(call print, "Installing all CLI binaries.")
153153 $(GOINSTALL ) -trimpath -tags=" $( LND_RELEASE_TAGS) " -ldflags " $( LDFLAGS) " github.com/lightningnetwork/lnd/cmd/lncli
154154 $(GOINSTALL ) -trimpath -ldflags " $( LDFLAGS) " github.com/lightninglabs/loop/cmd/loop
155155 $(GOINSTALL ) -trimpath github.com/lightninglabs/faraday/cmd/frcli
156156 $(GOINSTALL ) -trimpath -ldflags " $( LDFLAGS) " github.com/lightninglabs/pool/cmd/pool
157157 $(GOINSTALL ) -trimpath -ldflags " $( LDFLAGS) " github.com/lightninglabs/taproot-assets/cmd/tapcli
158+
159+ go-install-cli : go-install-cli-nolit
160+ @$(call print, "Installing litcli binary.")
158161 $(GOINSTALL ) -trimpath -tags=" $( LND_RELEASE_TAGS) " -ldflags " $( LDFLAGS) " $(PKG ) /cmd/litcli
159162
163+ go-install-cli-noui : go-install-cli-nolit
164+ @$(call print, "Installing litcli binary without UI.")
165+ $(GOINSTALL ) -trimpath -tags=" litd_no_ui $( LND_RELEASE_TAGS) " -ldflags " $( LDFLAGS) " $(PKG ) /cmd/litcli
166+
160167app-build : yarn-install
161168 @$(call print, "Building production app.")
162169 cd app; yarn build
You can’t perform that action at this time.
0 commit comments