From b5943926de51a9a2a980c4a69bcfcf2406fba5a9 Mon Sep 17 00:00:00 2001 From: Yey007 <55263178+Yey007@users.noreply.github.com> Date: Tue, 3 Dec 2024 20:55:02 -0500 Subject: [PATCH] Copy lib instead of move during install --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 62b2476..a78969a 100644 --- a/Makefile +++ b/Makefile @@ -99,7 +99,7 @@ bench: $(MAINNAME) install: $(LIBNAME) mkdir -p $(LIBINSTALL) mkdir -p $(HEADERINSTALL)/$(INSTALLNAME) - mv $(LIBNAME) $(LIBINSTALL) + cp $(LIBNAME) $(LIBINSTALL) cp -r $(INCLUDEDIR)/* $(HEADERINSTALL)/$(INSTALLNAME) .PHONY: uninstall