X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/abb9b874c5d1573a42c8c5519a38ac0575ef77ba..7da2b37588408ab538e16f2d93ffb47a19e7a090:/methods/makefile diff --git a/methods/makefile b/methods/makefile index addaf23c9..80f749255 100644 --- a/methods/makefile +++ b/methods/makefile @@ -36,14 +36,36 @@ include $(PROGRAM_H) # The http method PROGRAM=http -SLIBS = -lapt-pkg $SOCKETLIBS +SLIBS = -lapt-pkg $(SOCKETLIBS) LIB_MAKES = apt-pkg/makefile SOURCE = http.cc rfc2553emu.cc connect.cc include $(PROGRAM_H) # The ftp method PROGRAM=ftp -SLIBS = -lapt-pkg $SOCKETLIBS +SLIBS = -lapt-pkg $(SOCKETLIBS) LIB_MAKES = apt-pkg/makefile SOURCE = ftp.cc rfc2553emu.cc connect.cc include $(PROGRAM_H) + +# The rsh method +PROGRAM=rsh +SLIBS = -lapt-pkg +LIB_MAKES = apt-pkg/makefile +SOURCE = rsh.cc +include $(PROGRAM_H) + +# 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 + +$(BIN)/bzip2: + echo "Installing bzip2 method link" + ln -fs gzip $(BIN)/bzip2 +clean-$(BIN)/bzip2: + -rm $(BIN)/bzip2