From b3903077519d38dcdc9d7d8d6140dea04f8f5d72 Mon Sep 17 00:00:00 2001 From: Matt Morehouse Date: Thu, 20 Apr 2023 17:02:55 -0500 Subject: [PATCH] make: clean up lowdown install `make clean && make` wasn't rebuilding lowdown. --- external/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/external/Makefile b/external/Makefile index 9311b2c72..c922657ce 100644 --- a/external/Makefile +++ b/external/Makefile @@ -125,6 +125,7 @@ clean: external-clean external-clean: $(RM) $(EXTERNAL_LIBS) $(TARGET_DIR)/*.la $(TARGET_DIR)/*.o $(RM) $(TARGET_DIR)/jsmn-build/jsmn.o + $(RM) -r $(TARGET_DIR)/lowdown-build/* if [ -f ${TARGET_DIR}/libsodium-build/Makefile ]; then make -C ${TARGET_DIR}/libsodium-build clean; fi if [ -f ${TARGET_DIR}/libwally-core-build/Makefile ]; then make -C ${TARGET_DIR}/libwally-core-build clean; fi if [ -f ${TARGET_DIR}/libwally-core-build/src/Makefile ]; then make -C ${TARGET_DIR}/libwally-core-build/src clean; fi