Skip to content

Commit

Permalink
build: Fix 'make deploy' when binaries haven't been built yet
Browse files Browse the repository at this point in the history
  • Loading branch information
theuni committed Aug 6, 2014
1 parent 206a7f9 commit d343460
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d343460

Please sign in to comment.