Skip to content

Commit

Permalink
Copy lib instead of move during install
Browse files Browse the repository at this point in the history
  • Loading branch information
Yey007 committed Dec 4, 2024
1 parent dc2c109 commit b594392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b594392

Please sign in to comment.