This commit is contained in:
jl777
2016-10-28 14:35:24 -03:00
parent f2be2c8d9f
commit 4d65d051ec

View File

@@ -66,7 +66,7 @@ if BUILD_BITCOIND
endif
if BUILD_BITCOIN_UTILS
bin_PROGRAMS += komodo-cli bitcoin-tx
bin_PROGRAMS += komodo-cli komodo-tx
endif
LIBZCASH_H = \
@@ -402,16 +402,16 @@ komodo_cli_LDADD = \
#
# zcash-tx binary #
zcash_tx_SOURCES = bitcoin-tx.cpp
zcash_tx_CPPFLAGS = $(BITCOIN_INCLUDES)
zcash_tx_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
komodo_tx_SOURCES = komodo-tx.cpp
komodo_tx_CPPFLAGS = $(BITCOIN_INCLUDES)
komodo_tx_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
if TARGET_WINDOWS
zcash_tx_SOURCES += bitcoin-tx-res.rc
komodo_tx_SOURCES += bitcoin-tx-res.rc
endif
# FIXME: Is libzcash needed for zcash_tx?
zcash_tx_LDADD = \
komodo_tx_LDADD = \
$(LIBBITCOIN_UNIVALUE) \
$(LIBBITCOIN_COMMON) \
$(LIBBITCOIN_UTIL) \
@@ -420,7 +420,7 @@ zcash_tx_LDADD = \
$(LIBBITCOIN_CRYPTO) \
$(LIBZCASH_LIBS)
zcash_tx_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
komodo_tx_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
#
# zcash protocol primitives #