From 266d582c0a05a4fbed53ebbbc6625fc5b23a7faf Mon Sep 17 00:00:00 2001 From: Ola Jeppsson Date: Fri, 18 Oct 2019 20:14:25 -0400 Subject: doc: Use wildcard instead of explicit file list As per request here: https://github.com/memcached/memcached/pull/554#issuecomment-543362675 NB: Using wildcards for dependencies with Automake is not recommended and should be considered fragile. However, for this particular case it seems to work. --- doc/Makefile.am | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'doc/Makefile.am') diff --git a/doc/Makefile.am b/doc/Makefile.am index 94278c0..3539fc8 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -2,12 +2,8 @@ man_MANS = memcached.1 SPECIFICATIONS = protocol-binary.txt protocol-binary-range.txt -EXTRA_DIST = new_lru.txt \ - protocol.txt \ - readme.txt \ - storage.txt \ - threads.txt \ - tls.txt +EXTRA_DIST = $(srcdir)/*.txt + # When we make dist always include the generated specifications so people don't # have to have xml2rfc and xsltproc installed EXTRA_DIST += $(SPECIFICATIONS) -- cgit v1.2.1