diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2014-08-04 17:35:33 -0400 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2014-08-06 19:29:19 -0400 |
commit | d3434601baa8b2b8513ae08fcac99053860165ad (patch) | |
tree | 07ad31663bdcb2602bfc6eddce72d7b90f3c8dea | |
parent | 206a7f9de6ad8fdd30ebc1a0cd812b891e005563 (diff) |
build: Fix 'make deploy' when binaries haven't been built yet
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 63a22a2cc1..123a22525c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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: |