X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/b2e465d6d32d2dc884f58b94acb7e35f671a87fe..0a5e4a031a039329cc0d27268be6a623e892c452:/methods/makefile diff --git a/methods/makefile b/methods/makefile index dfab23ab2..80f749255 100644 --- a/methods/makefile +++ b/methods/makefile @@ -55,11 +55,17 @@ LIB_MAKES = apt-pkg/makefile SOURCE = rsh.cc include $(PROGRAM_H) -# SSH method symlink -all: $(BIN)/ssh -veryclean: clean-$(BIN)/ssh +# SSH and vzip2 method symlink +all: $(BIN)/ssh $(BIN)/bzip2 +veryclean: clean-$(BIN)/ssh clean-$(BIN)/bzip2 $(BIN)/ssh: echo "Installing ssh method link" ln -fs rsh $(BIN)/ssh clean-$(BIN)/ssh: - rm $(BIN)/ssh + -rm $(BIN)/ssh + +$(BIN)/bzip2: + echo "Installing bzip2 method link" + ln -fs gzip $(BIN)/bzip2 +clean-$(BIN)/bzip2: + -rm $(BIN)/bzip2