diff options
| author | Cory Fields <[email protected]> | 2016-05-27 14:14:44 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2016-05-27 14:14:44 -0400 |
| commit | 723779c6504453cfb5ccdacf864e7e2f09bb6c32 (patch) | |
| tree | 4926612bc1bf2c09a9d57763b3d9bf0bf6995ae0 /src | |
| parent | crypter: add tests for crypter (diff) | |
| download | discoin-723779c6504453cfb5ccdacf864e7e2f09bb6c32.tar.xz discoin-723779c6504453cfb5ccdacf864e7e2f09bb6c32.zip | |
build: Enumerate ctaes rather than globbing
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 31917f135..cb8a99fe9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -410,6 +410,12 @@ libbitcoinconsensus_la_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) endif # +CTAES_DIST = crypto/ctaes/bench.c +CTAES_DIST += crypto/ctaes/ctaes.c +CTAES_DIST += crypto/ctaes/ctaes.h +CTAES_DIST += crypto/ctaes/README.md +CTAES_DIST += crypto/ctaes/test.c + CLEANFILES = leveldb/libleveldb.a leveldb/libmemenv.a CLEANFILES += $(EXTRA_LIBRARIES) CLEANFILES += *.gcda *.gcno @@ -427,7 +433,7 @@ CLEANFILES += zmq/*.gcda zmq/*.gcno DISTCLEANFILES = obj/build.h -EXTRA_DIST = leveldb crypto/ctaes +EXTRA_DIST = leveldb $(CTAES_DIST) clean-local: -$(MAKE) -C leveldb clean |