From 3f29439f1a70e846f060d4437629694dfc9dbee3 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 26 Oct 2019 16:54:12 +0200 Subject: [PATCH] Remove left-over .deps directories. --- benchmarks/Makefile.am | 5 +++++ examples/Makefile.am | 6 ++++++ src/Makefile.am | 5 +++++ tests/Makefile.am | 4 ++++ 4 files changed, 20 insertions(+) diff --git a/benchmarks/Makefile.am b/benchmarks/Makefile.am index 3d3dfe6..1632dc7 100644 --- a/benchmarks/Makefile.am +++ b/benchmarks/Makefile.am @@ -17,3 +17,8 @@ DEFAULT_INCLUDES = -I.@am__isrc@ EXTRA_DIST = README bench2.txt timebench2.sh + +# Remove .deps directories created by 'configure'. +# I would say that this left-over is an Automake 1.16.1 bug. +distclean-local: + rm -rf $(DEPDIR) diff --git a/examples/Makefile.am b/examples/Makefile.am index cee2ce0..d29361f 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -31,3 +31,9 @@ pi_LDADD = ../src/libcln.la AM_CPPFLAGS = -I../include -I$(top_srcdir)/include DEFAULT_INCLUDES = -I.@am__isrc@ + + +# Remove .deps directories created by 'configure'. +# I would say that this left-over is an Automake 1.16.1 bug. +distclean-local: + rm -rf $(DEPDIR) diff --git a/src/Makefile.am b/src/Makefile.am index af1b74c..4067bcf 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -986,3 +986,8 @@ DISTCLEANFILES = \ base/digitseq/cl_asm.S \ polynomial/elem/cl_asm_GF2.S +# Remove .deps directories created by 'configure'. +# I would say that this left-over is an Automake 1.16.1 bug. +distclean-local: + rm -rf $(DEPDIR) */$(DEPDIR) */*/$(DEPDIR) */*/*/$(DEPDIR) + diff --git a/tests/Makefile.am b/tests/Makefile.am index 1a3fd4c..7dfe406 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -182,3 +182,7 @@ main_SOURCES = main.cc main_LDADD = ../src/libcln.la +# Remove .deps directories created by 'configure'. +# I would say that this left-over is an Automake 1.16.1 bug. +distclean-local: + rm -rf $(DEPDIR) -- 2.46.1