+
+# The rred method
+PROGRAM=rred
+SLIBS = -lapt-pkg $(SOCKETLIBS)
+LIB_MAKES = apt-pkg/makefile
+SOURCE = rred.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
+binary: $(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