Add specific external libs to the makefile clean recipe. To avoid failed linking of cross compiled binaries left out after an incomplete make clean

This commit is contained in:
Igor Cota
2018-02-27 17:45:57 +01:00
committed by Rusty Russell
parent 73cda2f2ae
commit a048a54f83

3
external/Makefile vendored
View File

@@ -82,6 +82,9 @@ clean: external-clean
external-clean: external-clean:
$(RM) $(EXTERNAL_LIBS) external/*.la external/*.o $(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: external-distclean:
make -C external/libsodium distclean || true make -C external/libsodium distclean || true