build: Fix 'make deploy' when binaries haven't been built yet
This commit is contained in:
parent
206a7f9de6
commit
d3434601ba
1 changed files with 9 additions and 0 deletions
|
@ -103,6 +103,15 @@ if TARGET_WINDOWS
|
|||
deploy: $(BITCOIN_WIN_INSTALLER)
|
||||
endif
|
||||
|
||||
$(BITCOIN_QT_BIN): FORCE
|
||||
$(MAKE) -C src qt/$(@F)
|
||||
|
||||
$(BITCOIND_BIN): FORCE
|
||||
$(MAKE) -C src $(@F)
|
||||
|
||||
$(BITCOIN_CLI_BIN): FORCE
|
||||
$(MAKE) -C src $(@F)
|
||||
|
||||
if USE_LCOV
|
||||
|
||||
baseline.info:
|
||||
|
|
Loading…
Reference in a new issue