diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-11-29 21:24:29 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-11-29 21:24:29 +0100 |
commit | 5f6b130d6342965bfa49beb9413bdf742440b8ab (patch) | |
tree | 6f2516220bbeb3eccdbf997120bf031e1f7714cb /methods/makefile | |
parent | 65d71b381cc326bdf5310d8a2ea5b3f0d0307f63 (diff) |
* prototype of mirror method added
Diffstat (limited to 'methods/makefile')
-rw-r--r-- | methods/makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/methods/makefile b/methods/makefile index 1e3b1ef85..12e446a55 100644 --- a/methods/makefile +++ b/methods/makefile @@ -49,7 +49,7 @@ include $(PROGRAM_H) PROGRAM=http SLIBS = -lapt-pkg $(SOCKETLIBS) LIB_MAKES = apt-pkg/makefile -SOURCE = http.cc rfc2553emu.cc connect.cc +SOURCE = http.cc http_main.cc rfc2553emu.cc connect.cc include $(PROGRAM_H) # The ftp method @@ -66,6 +66,13 @@ LIB_MAKES = apt-pkg/makefile SOURCE = rsh.cc include $(PROGRAM_H) +# The mirror method +PROGRAM=mirror +SLIBS = -lapt-pkg $(SOCKETLIBS) +LIB_MAKES = apt-pkg/makefile +SOURCE = mirror.cc http.cc rfc2553emu.cc connect.cc +include $(PROGRAM_H) + # SSH and vzip2 method symlink binary: $(BIN)/ssh $(BIN)/bzip2 veryclean: clean-$(BIN)/ssh clean-$(BIN)/bzip2 |