From a048a54f83b372abdc5394e164b298c6e23dd46e Mon Sep 17 00:00:00 2001 From: Igor Cota Date: Tue, 27 Feb 2018 17:45:57 +0100 Subject: [PATCH] Add specific external libs to the makefile clean recipe. To avoid failed linking of cross compiled binaries left out after an incomplete make clean --- external/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/external/Makefile b/external/Makefile index 99e07bb9d..92cfa1386 100644 --- a/external/Makefile +++ b/external/Makefile @@ -82,6 +82,9 @@ clean: external-clean external-clean: $(RM) $(EXTERNAL_LIBS) external/*.la external/*.o + make -C external/libsodium clean + make -C external/libwally-core clean + make -C external/libwally-core/src clean external-distclean: make -C external/libsodium distclean || true