diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:57:15 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:57:15 +0000 |
commit | 2204bd804ded02d3ca8f04ebc6de30204468530a (patch) | |
tree | baf6f3d2f2d2976e59f5e0b7e83dd4779f6889f9 /methods/makefile | |
parent | db5c1b541994e1b6d9b64a44206002b726c42dbe (diff) |
Alfredos bzip2 stuff
Author: jgg
Date: 2001-03-11 22:37:35 GMT
Alfredos bzip2 stuff
Diffstat (limited to 'methods/makefile')
-rw-r--r-- | methods/makefile | 14 |
1 files changed, 10 insertions, 4 deletions
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 |