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