]> Git Repo - VerusCoin.git/blob - src/Makefile.am
Auto merge of #2763 - syd0:upgrade-libsodium, r=daira
[VerusCoin.git] / src / Makefile.am
1 DIST_SUBDIRS = secp256k1 univalue
2 AM_LDFLAGS = $(PTHREAD_CFLAGS) $(LIBTOOL_LDFLAGS)
3
4
5 if EMBEDDED_LEVELDB
6 LEVELDB_CPPFLAGS += -I$(srcdir)/leveldb/include
7 LEVELDB_CPPFLAGS += -I$(srcdir)/leveldb/helpers/memenv
8 LIBLEVELDB += $(builddir)/leveldb/libleveldb.a
9 LIBMEMENV  += $(builddir)/leveldb/libmemenv.a
10
11 # NOTE: This dependency is not strictly necessary, but without it make may try to build both in parallel, which breaks the LevelDB build system in a race
12 $(LIBLEVELDB): $(LIBMEMENV)
13
14 $(LIBLEVELDB) $(LIBMEMENV):
15         @echo "Building LevelDB ..." && $(MAKE) -C $(@D) $(@F) CXX="$(CXX)" \
16           CC="$(CC)" PLATFORM=$(TARGET_OS) AR="$(AR)" $(LEVELDB_TARGET_FLAGS) \
17           OPT="$(CXXFLAGS) $(CPPFLAGS) -D__STDC_LIMIT_MACROS"
18 endif
19
20 BITCOIN_CONFIG_INCLUDES=-I$(builddir)/config
21 BITCOIN_INCLUDES=-I$(builddir) -I$(builddir)/obj $(BOOST_CPPFLAGS) $(LEVELDB_CPPFLAGS) $(CRYPTO_CFLAGS) $(SSL_CFLAGS)
22
23 BITCOIN_INCLUDES += -I$(srcdir)/secp256k1/include
24 BITCOIN_INCLUDES += -I$(srcdir)/snark/build/include
25 BITCOIN_INCLUDES += -I$(srcdir)/snark/build/include/libsnark
26 BITCOIN_INCLUDES += -I$(srcdir)/univalue/include
27
28 LIBBITCOIN_SERVER=libbitcoin_server.a
29 LIBBITCOIN_WALLET=libbitcoin_wallet.a
30 LIBBITCOIN_COMMON=libbitcoin_common.a
31 LIBBITCOIN_CLI=libbitcoin_cli.a
32 LIBBITCOIN_UTIL=libbitcoin_util.a
33 LIBBITCOIN_CRYPTO=crypto/libbitcoin_crypto.a
34 LIBSECP256K1=secp256k1/libsecp256k1.la
35 LIBSNARK=snark/build/lib/libsnark.a
36 LIBUNIVALUE=univalue/libunivalue.la
37 LIBZCASH=libzcash.a
38
39 $(LIBSECP256K1): $(wildcard secp256k1/src/*) $(wildcard secp256k1/include/*)
40         $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F)
41
42 # A phony target is included here to ensure libsnark is built first, so that its
43 # header files are collated for use in later build steps.
44 # See https://stackoverflow.com/a/10726725
45 -include collate-libsnark
46 collate-libsnark: $(LIBSNARK)
47
48 LIBSNARK_CXXFLAGS = -fPIC -DBINARY_OUTPUT -DNO_PT_COMPRESSION=1
49 LIBSNARK_CONFIG_FLAGS = CURVE=ALT_BN128 MULTICORE=1 NO_PROCPS=1 NO_DOCS=1 STATIC=1 NO_SUPERCOP=1 FEATUREFLAGS=-DMONTGOMERY_OUTPUT NO_COPY_DEPINST=1 NO_COMPILE_LIBGTEST=1
50
51 $(LIBSNARK): $(wildcard snark/src/*)
52         $(AM_V_at) CXXFLAGS="$(LIBSNARK_CXXFLAGS)" $(MAKE) $(AM_MAKEFLAGS) -C snark/ install PREFIX=$(srcdir)/build DEPINST="$(LIBSNARK_DEPINST)" $(LIBSNARK_CONFIG_FLAGS) OPTFLAGS="-O2 -march=x86-64"
53
54 libsnark-tests: $(wildcard snark/src/*)
55         $(AM_V_at) CXXFLAGS="$(LIBSNARK_CXXFLAGS)" $(MAKE) $(AM_MAKEFLAGS) -C snark/ check PREFIX=$(srcdir)/build DEPINST="$(LIBSNARK_DEPINST)" $(LIBSNARK_CONFIG_FLAGS) OPTFLAGS="-O2 -march=x86-64"
56
57 $(LIBUNIVALUE): $(wildcard univalue/lib/*)
58         $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C univalue/
59
60 # Make is not made aware of per-object dependencies to avoid limiting building parallelization
61 # But to build the less dependent modules first, we manually select their order here:
62 EXTRA_LIBRARIES = \
63   crypto/libbitcoin_crypto.a \
64   libbitcoin_util.a \
65   libbitcoin_common.a \
66   libbitcoin_server.a \
67   libbitcoin_cli.a \
68   libzcash.a
69 if ENABLE_WALLET
70 BITCOIN_INCLUDES += $(BDB_CPPFLAGS)
71 EXTRA_LIBRARIES += libbitcoin_wallet.a
72 endif
73 if ENABLE_ZMQ
74 EXTRA_LIBRARIES += libbitcoin_zmq.a
75 endif
76 if ENABLE_PROTON
77 EXTRA_LIBRARIES += libbitcoin_proton.a
78 endif
79
80 if BUILD_BITCOIN_LIBS
81 lib_LTLIBRARIES = libzcashconsensus.la
82 LIBZCASH_CONSENSUS=libzcashconsensus.la
83 else
84 LIBZCASH_CONSENSUS=
85 endif
86
87 bin_PROGRAMS =
88 noinst_PROGRAMS =
89 TESTS =
90
91 if BUILD_BITCOIND
92   bin_PROGRAMS += zcashd
93 endif
94
95 if BUILD_BITCOIN_UTILS
96   bin_PROGRAMS += zcash-cli zcash-tx
97 endif
98
99 LIBZCASH_H = \
100   zcash/IncrementalMerkleTree.hpp \
101   zcash/NoteEncryption.hpp \
102   zcash/Address.hpp \
103   zcash/JoinSplit.hpp \
104   zcash/Note.hpp \
105   zcash/prf.h \
106   zcash/Proof.hpp \
107   zcash/util.h \
108   zcash/Zcash.h
109
110 .PHONY: FORCE collate-libsnark check-symbols check-security
111 # bitcoin core #
112 BITCOIN_CORE_H = \
113   addrman.h \
114   alert.h \
115   amount.h \
116   amqp/amqpabstractnotifier.h \
117   amqp/amqpconfig.h \
118   amqp/amqpnotificationinterface.h \
119   amqp/amqppublishnotifier.h \
120   amqp/amqpsender.h \
121   arith_uint256.h \
122   asyncrpcoperation.h \
123   asyncrpcqueue.h \
124   base58.h \
125   bloom.h \
126   chain.h \
127   chainparams.h \
128   chainparamsbase.h \
129   chainparamsseeds.h \
130   checkpoints.h \
131   checkqueue.h \
132   clientversion.h \
133   coincontrol.h \
134   coins.h \
135   compat.h \
136   compat/byteswap.h \
137   compat/endian.h \
138   compat/sanity.h \
139   compressor.h \
140   consensus/consensus.h \
141   consensus/params.h \
142   consensus/validation.h \
143   core_io.h \
144   core_memusage.h \
145   deprecation.h \
146   hash.h \
147   httprpc.h \
148   httpserver.h \
149   init.h \
150   key.h \
151   keystore.h \
152   leveldbwrapper.h \
153   limitedmap.h \
154   main.h \
155   memusage.h \
156   merkleblock.h \
157   metrics.h \
158   miner.h \
159   mruset.h \
160   net.h \
161   netbase.h \
162   noui.h \
163   paymentdisclosure.h \
164   paymentdisclosuredb.h \
165   policy/fees.h \
166   pow.h \
167   primitives/block.h \
168   primitives/transaction.h \
169   protocol.h \
170   pubkey.h \
171   random.h \
172   reverselock.h \
173   rpcclient.h \
174   rpcprotocol.h \
175   rpcserver.h \
176   scheduler.h \
177   script/interpreter.h \
178   script/script.h \
179   script/script_error.h \
180   script/sigcache.h \
181   script/sign.h \
182   script/standard.h \
183   serialize.h \
184   streams.h \
185   support/allocators/secure.h \
186   support/allocators/zeroafterfree.h \
187   support/cleanse.h \
188   support/events.h \
189   support/pagelocker.h \
190   sync.h \
191   threadsafety.h \
192   timedata.h \
193   tinyformat.h \
194   torcontrol.h \
195   txdb.h \
196   txmempool.h \
197   ui_interface.h \
198   uint256.h \
199   uint252.h \
200   undo.h \
201   util.h \
202   utilmoneystr.h \
203   utilstrencodings.h \
204   utiltime.h \
205   validationinterface.h \
206   version.h \
207   wallet/asyncrpcoperation_sendmany.h \
208   wallet/asyncrpcoperation_shieldcoinbase.h \
209   wallet/crypter.h \
210   wallet/db.h \
211   wallet/wallet.h \
212   wallet/wallet_ismine.h \
213   wallet/walletdb.h \
214   zmq/zmqabstractnotifier.h \
215   zmq/zmqconfig.h\
216   zmq/zmqnotificationinterface.h \
217   zmq/zmqpublishnotifier.h
218
219
220 obj/build.h: FORCE
221         @$(MKDIR_P) $(builddir)/obj
222         @$(top_srcdir)/share/genbuild.sh $(abs_top_builddir)/src/obj/build.h \
223           $(abs_top_srcdir)
224 libbitcoin_util_a-clientversion.$(OBJEXT): obj/build.h
225
226 # server: zcashd
227 libbitcoin_server_a_CPPFLAGS = $(BITCOIN_INCLUDES) $(EVENT_CFLAGS) $(EVENT_PTHREADS_CFLAGS)
228 libbitcoin_server_a_SOURCES = \
229   sendalert.cpp \
230   addrman.cpp \
231   alert.cpp \
232   alertkeys.h \
233   asyncrpcoperation.cpp \
234   asyncrpcqueue.cpp \
235   bloom.cpp \
236   chain.cpp \
237   checkpoints.cpp \
238   deprecation.cpp \
239   httprpc.cpp \
240   httpserver.cpp \
241   init.cpp \
242   leveldbwrapper.cpp \
243   main.cpp \
244   merkleblock.cpp \
245   metrics.cpp \
246   miner.cpp \
247   net.cpp \
248   noui.cpp \
249   paymentdisclosure.cpp \
250   paymentdisclosuredb.cpp \
251   policy/fees.cpp \
252   pow.cpp \
253   rest.cpp \
254   rpcblockchain.cpp \
255   rpcmining.cpp \
256   rpcmisc.cpp \
257   rpcnet.cpp \
258   rpcrawtransaction.cpp \
259   rpcserver.cpp \
260   script/sigcache.cpp \
261   timedata.cpp \
262   torcontrol.cpp \
263   txdb.cpp \
264   txmempool.cpp \
265   validationinterface.cpp \
266   $(BITCOIN_CORE_H) \
267   $(LIBZCASH_H)
268
269 if ENABLE_ZMQ
270 LIBBITCOIN_ZMQ=libbitcoin_zmq.a
271
272 libbitcoin_zmq_a_CPPFLAGS = $(BITCOIN_INCLUDES) $(ZMQ_CFLAGS)
273 libbitcoin_zmq_a_SOURCES = \
274   zmq/zmqabstractnotifier.cpp \
275   zmq/zmqnotificationinterface.cpp \
276   zmq/zmqpublishnotifier.cpp
277 endif
278
279 if ENABLE_PROTON
280 LIBBITCOIN_PROTON=libbitcoin_proton.a
281
282 libbitcoin_proton_a_CPPFLAGS = $(BITCOIN_INCLUDES)
283 libbitcoin_proton_a_SOURCES = \
284   amqp/amqpabstractnotifier.cpp \
285   amqp/amqpnotificationinterface.cpp \
286   amqp/amqppublishnotifier.cpp
287 endif
288
289 # wallet: zcashd, but only linked when wallet enabled
290 libbitcoin_wallet_a_CPPFLAGS = $(BITCOIN_INCLUDES)
291 libbitcoin_wallet_a_SOURCES = \
292   utiltest.cpp \
293   utiltest.h \
294   zcbenchmarks.cpp \
295   zcbenchmarks.h \
296   wallet/asyncrpcoperation_sendmany.cpp \
297   wallet/asyncrpcoperation_shieldcoinbase.cpp \
298   wallet/crypter.cpp \
299   wallet/db.cpp \
300   paymentdisclosure.cpp \
301   paymentdisclosuredb.cpp \
302   wallet/rpcdisclosure.cpp \
303   wallet/rpcdump.cpp \
304   wallet/rpcwallet.cpp \
305   wallet/wallet.cpp \
306   wallet/wallet_ismine.cpp \
307   wallet/walletdb.cpp \
308   $(BITCOIN_CORE_H) \
309   $(LIBZCASH_H)
310
311 # crypto primitives library
312 crypto_libbitcoin_crypto_a_CPPFLAGS = $(BITCOIN_CONFIG_INCLUDES)
313 crypto_libbitcoin_crypto_a_SOURCES = \
314   crypto/common.h \
315   crypto/equihash.cpp \
316   crypto/equihash.h \
317   crypto/equihash.tcc \
318   crypto/hmac_sha256.cpp \
319   crypto/hmac_sha256.h \
320   crypto/hmac_sha512.cpp \
321   crypto/hmac_sha512.h \
322   crypto/ripemd160.cpp \
323   crypto/ripemd160.h \
324   crypto/sha1.cpp \
325   crypto/sha1.h \
326   crypto/sha256.cpp \
327   crypto/sha256.h \
328   crypto/sha512.cpp \
329   crypto/sha512.h
330
331 if ENABLE_MINING
332 EQUIHASH_TROMP_SOURCES = \
333   pow/tromp/equi_miner.h \
334   pow/tromp/equi.h \
335   pow/tromp/osx_barrier.h
336
337 crypto_libbitcoin_crypto_a_CPPFLAGS += \
338   -DEQUIHASH_TROMP_ATOMIC
339 crypto_libbitcoin_crypto_a_SOURCES += \
340   ${EQUIHASH_TROMP_SOURCES}
341 endif
342
343 # common: shared between zcashd and non-server tools
344 libbitcoin_common_a_CPPFLAGS = $(BITCOIN_INCLUDES)
345 libbitcoin_common_a_SOURCES = \
346   amount.cpp \
347   arith_uint256.cpp \
348   base58.cpp \
349   chainparams.cpp \
350   coins.cpp \
351   compressor.cpp \
352   core_read.cpp \
353   core_write.cpp \
354   hash.cpp \
355   key.cpp \
356   keystore.cpp \
357   netbase.cpp \
358   primitives/block.cpp \
359   primitives/transaction.cpp \
360   protocol.cpp \
361   pubkey.cpp \
362   scheduler.cpp \
363   script/interpreter.cpp \
364   script/script.cpp \
365   script/script_error.cpp \
366   script/sign.cpp \
367   script/standard.cpp \
368   $(BITCOIN_CORE_H) \
369   $(LIBZCASH_H)
370
371 # util: shared between all executables.
372 # This library *must* be included to make sure that the glibc
373 # backward-compatibility objects and their sanity checks are linked.
374 libbitcoin_util_a_CPPFLAGS = $(BITCOIN_INCLUDES)
375 libbitcoin_util_a_SOURCES = \
376   support/pagelocker.cpp \
377   chainparamsbase.cpp \
378   clientversion.cpp \
379   compat/glibc_sanity.cpp \
380   compat/glibcxx_sanity.cpp \
381   compat/strnlen.cpp \
382   random.cpp \
383   rpcprotocol.cpp \
384   support/cleanse.cpp \
385   sync.cpp \
386   uint256.cpp \
387   util.cpp \
388   utilmoneystr.cpp \
389   utilstrencodings.cpp \
390   utiltime.cpp \
391   $(BITCOIN_CORE_H) \
392   $(LIBZCASH_H)
393
394 if GLIBC_BACK_COMPAT
395 libbitcoin_util_a_SOURCES += compat/glibc_compat.cpp
396 endif
397
398 # cli: zcash-cli
399 libbitcoin_cli_a_CPPFLAGS = $(BITCOIN_INCLUDES)
400 libbitcoin_cli_a_SOURCES = \
401   rpcclient.cpp \
402   $(BITCOIN_CORE_H) \
403   $(LIBZCASH_H)
404
405 nodist_libbitcoin_util_a_SOURCES = $(srcdir)/obj/build.h
406 #
407
408 # bitcoind binary #
409 zcashd_SOURCES = bitcoind.cpp
410 zcashd_CPPFLAGS = $(BITCOIN_INCLUDES)
411 zcashd_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
412
413 if TARGET_WINDOWS
414 zcashd_SOURCES += bitcoind-res.rc
415 endif
416
417 zcashd_LDADD = \
418   $(LIBBITCOIN_SERVER) \
419   $(LIBBITCOIN_COMMON) \
420   $(LIBUNIVALUE) \
421   $(LIBBITCOIN_UTIL) \
422   $(LIBBITCOIN_CRYPTO) \
423   $(LIBZCASH) \
424   $(LIBSNARK) \
425   $(LIBLEVELDB) \
426   $(LIBMEMENV) \
427   $(LIBSECP256K1)
428
429 if ENABLE_ZMQ
430 zcashd_LDADD += $(LIBBITCOIN_ZMQ) $(ZMQ_LIBS)
431 endif
432
433 if ENABLE_WALLET
434 zcashd_LDADD += libbitcoin_wallet.a
435 endif
436
437 zcashd_LDADD += \
438   $(BOOST_LIBS) \
439   $(BDB_LIBS) \
440   $(SSL_LIBS) \
441   $(CRYPTO_LIBS) \
442   $(EVENT_PTHREADS_LIBS) \
443   $(EVENT_LIBS) \
444   $(LIBBITCOIN_CRYPTO) \
445   $(LIBZCASH_LIBS)
446
447 if ENABLE_PROTON
448 zcashd_LDADD += $(LIBBITCOIN_PROTON) $(PROTON_LIBS)
449 endif
450
451 # bitcoin-cli binary #
452 zcash_cli_SOURCES = bitcoin-cli.cpp
453 zcash_cli_CPPFLAGS = $(BITCOIN_INCLUDES) $(EVENT_CFLAGS)
454 zcash_cli_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
455
456 if TARGET_WINDOWS
457 zcash_cli_SOURCES += bitcoin-cli-res.rc
458 endif
459
460 zcash_cli_LDADD = \
461   $(LIBBITCOIN_CLI) \
462   $(LIBUNIVALUE) \
463   $(LIBBITCOIN_UTIL) \
464   $(BOOST_LIBS) \
465   $(SSL_LIBS) \
466   $(CRYPTO_LIBS) \
467   $(EVENT_LIBS) \
468   $(LIBZCASH) \
469   $(LIBSNARK) \
470   $(LIBBITCOIN_CRYPTO) \
471   $(LIBZCASH_LIBS)
472 #
473
474 # zcash-tx binary #
475 zcash_tx_SOURCES = bitcoin-tx.cpp
476 zcash_tx_CPPFLAGS = $(BITCOIN_INCLUDES)
477 zcash_tx_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
478
479 if TARGET_WINDOWS
480 zcash_tx_SOURCES += bitcoin-tx-res.rc
481 endif
482
483 # FIXME: Is libzcash needed for zcash_tx?
484 zcash_tx_LDADD = \
485   $(LIBUNIVALUE) \
486   $(LIBBITCOIN_COMMON) \
487   $(LIBBITCOIN_UTIL) \
488   $(LIBSECP256K1) \
489   $(LIBZCASH) \
490   $(LIBSNARK) \
491   $(LIBBITCOIN_CRYPTO) \
492   $(LIBZCASH_LIBS)
493
494 zcash_tx_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
495 #
496
497 # zcash protocol primitives #
498 libzcash_a_SOURCES = \
499   zcash/IncrementalMerkleTree.cpp \
500   zcash/NoteEncryption.cpp \
501   zcash/Address.cpp \
502   zcash/JoinSplit.cpp \
503   zcash/Proof.cpp \
504   zcash/Note.cpp \
505   zcash/prf.cpp \
506   zcash/util.cpp \
507   zcash/circuit/commitment.tcc \
508   zcash/circuit/gadget.tcc \
509   zcash/circuit/merkle.tcc \
510   zcash/circuit/note.tcc \
511   zcash/circuit/prfs.tcc \
512   zcash/circuit/utils.tcc
513
514 libzcash_a_CPPFLAGS = -DMULTICORE -fopenmp -fPIC -DBINARY_OUTPUT -DCURVE_ALT_BN128 -DBOOST_SPIRIT_THREADSAFE -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS $(HARDENED_CPPFLAGS) -pipe -O1 -g -Wstack-protector -fstack-protector-all -fPIE -fvisibility=hidden -DSTATIC $(BITCOIN_INCLUDES)
515
516 libzcash_a_CXXFLAGS = $(HARDENED_CXXFLAGS) -fwrapv -fno-strict-aliasing
517
518 libzcash_a_LDFLAGS = $(HARDENED_LDFLAGS)
519
520 libzcash_a_CPPFLAGS += -DMONTGOMERY_OUTPUT
521
522 # zcashconsensus library #
523 if BUILD_BITCOIN_LIBS
524 include_HEADERS = script/zcashconsensus.h
525 libzcashconsensus_la_SOURCES = \
526   crypto/equihash.cpp \
527   crypto/hmac_sha512.cpp \
528   crypto/ripemd160.cpp \
529   crypto/sha1.cpp \
530   crypto/sha256.cpp \
531   crypto/sha512.cpp \
532   hash.cpp \
533   primitives/transaction.cpp \
534   pubkey.cpp \
535   script/zcashconsensus.cpp \
536   script/interpreter.cpp \
537   script/script.cpp \
538   uint256.cpp \
539   utilstrencodings.cpp
540
541 if GLIBC_BACK_COMPAT
542   libzcashconsensus_la_SOURCES += compat/glibc_compat.cpp
543 endif
544
545 libzcashconsensus_la_LDFLAGS = -no-undefined $(RELDFLAGS)
546 libzcashconsensus_la_LIBADD = $(LIBSECP256K1)
547 libzcashconsensus_la_CPPFLAGS = -I$(builddir)/obj -I$(srcdir)/secp256k1/include -DBUILD_BITCOIN_INTERNAL
548
549 endif
550 #
551
552 CLEANFILES = leveldb/libleveldb.a leveldb/libmemenv.a *.gcda *.gcno */*.gcno wallet/*/*.gcno
553
554 DISTCLEANFILES = obj/build.h
555
556 EXTRA_DIST = leveldb snark
557
558 clean-local:
559         -$(MAKE) -C leveldb clean
560         -$(MAKE) -C secp256k1 clean
561         -$(MAKE) -C snark clean
562         rm -f leveldb/*/*.gcno leveldb/helpers/memenv/*.gcno
563         -rm -f config.h
564
565 .rc.o:
566         @test -f $(WINDRES)
567         $(AM_V_GEN) $(WINDRES) -DWINDRES_PREPROC -i $< -o $@
568
569 .mm.o:
570         $(AM_V_CXX) $(OBJCXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
571           $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)  -c -o $@ $<
572
573 check-symbols: $(bin_PROGRAMS)
574 if GLIBC_BACK_COMPAT
575         @echo "Checking glibc back compat of [$(bin_PROGRAMS)]..."
576         $(AM_V_at) READELF=$(READELF) CPPFILT=$(CPPFILT) $(top_srcdir)/contrib/devtools/symbol-check.py $(bin_PROGRAMS)
577 endif
578
579 check-security: $(bin_PROGRAMS)
580 if HARDEN
581         @echo "Checking binary security of [$(bin_PROGRAMS)]..."
582         $(AM_V_at) READELF=$(READELF) OBJDUMP=$(OBJDUMP) $(top_srcdir)/contrib/devtools/security-check.py $(bin_PROGRAMS)
583 endif
584
585 %.pb.cc %.pb.h: %.proto
586         @test -f $(PROTOC)
587         $(AM_V_GEN) $(PROTOC) --cpp_out=$(@D) --proto_path=$(abspath $(<D) $<)
588
589 if ENABLE_TESTS
590 include Makefile.test.include
591 include Makefile.gtest.include
592 endif
593
594 include Makefile.zcash.include
This page took 0.053918 seconds and 4 git commands to generate.