From 4337aff726352626dc42ccd90bb1fc36206cee00 Mon Sep 17 00:00:00 2001 From: Chase Covello Date: Fri, 12 Apr 2024 20:52:33 -0700 Subject: [PATCH] Updated Makefile Updated Makefile to install/uninstall chunkcheck and to remove installation of macrecovery. --- docs/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index 71ea07e..62795b9 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -26,7 +26,7 @@ install_bins: install -d $(DESTDIR)$(bindir) install -m 755 ../quickget $(DESTDIR)$(bindir) install -m 755 ../quickemu $(DESTDIR)$(bindir) - install -m 755 ../macrecovery $(DESTDIR)$(bindir) + install -m 755 ../chunkcheck $(DESTDIR)$(bindir) install: install_bins install_docs @@ -37,6 +37,7 @@ uninstall:: rm -f $(DESTDIR)$(bindir)/quickget rm -f $(DESTDIR)$(bindir)/quickemu rm -f $(DESTDIR)$(bindir)/macrecovery + rm -f $(DESTDIR)$(bindir)/chunkcheck .PHONY: all