From b0dc85a3da10257adedd32b6068c8b242a6cecbc Mon Sep 17 00:00:00 2001 From: Manas Rachh <43040789+mrachh@users.noreply.github.com> Date: Tue, 27 Feb 2024 10:21:05 -0500 Subject: [PATCH] Update makefile to fix windows lib installation --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index e5dafa0..cb91211 100644 --- a/makefile +++ b/makefile @@ -213,7 +213,7 @@ install: $(STATICLIB) $(DYNAMICLIB) mkdir -p $(FMM_INSTALL_DIR) cp -f lib/$(DYNAMICLIB) $(FMM_INSTALL_DIR)/ cp -f lib-static/$(STATICLIB) $(FMM_INSTALL_DIR)/ - [ ! -f lib/$(LIMPLIB) ] || cp lib/$(LIMPLIB) $(FMM_INSTALL_DIR)/ + [ ! -f lib/$(LIMPLIB) ] || cp -f lib/$(LIMPLIB) $(FMM_INSTALL_DIR)/ @echo "Make sure to include " $(FMM_INSTALL_DIR) " in the appropriate path variable" @echo " LD_LIBRARY_PATH on Linux" @echo " PATH on windows"