Browse Source

Auto merge of #1973 - str4d:1943-remove-extraneous-bins-from-dist, r=ebfull

Exclude test binaries from make install

Closes #1943.
pull/4/head
zkbot 8 years ago
parent
commit
acabe0a22d
  1. 1
      src/Makefile.am
  2. 2
      src/Makefile.gtest.include
  3. 2
      src/Makefile.test.include
  4. 2
      src/Makefile.zcash.include

1
src/Makefile.am

@ -59,6 +59,7 @@ LIBZCASH_CONSENSUS=
endif
bin_PROGRAMS =
noinst_PROGRAMS =
TESTS =
if BUILD_BITCOIND

2
src/Makefile.gtest.include

@ -1,5 +1,5 @@
TESTS += zcash-gtest
bin_PROGRAMS += zcash-gtest
noinst_PROGRAMS += zcash-gtest
# tool for generating our public parameters.
# test_checktransaction.cpp MUST be before

2
src/Makefile.test.include

@ -1,5 +1,5 @@
TESTS += test/test_bitcoin
bin_PROGRAMS += test/test_bitcoin
noinst_PROGRAMS += test/test_bitcoin
TEST_SRCDIR = test
TEST_BINARY=test/test_bitcoin$(EXEEXT)

2
src/Makefile.zcash.include

@ -1,4 +1,4 @@
bin_PROGRAMS += \
noinst_PROGRAMS += \
zcash/GenerateParams \
zcash/CreateJoinSplit

Loading…
Cancel
Save