]> git.saurik.com Git - apt.git/blobdiff - methods/makefile
Changed to using rfc2553 name resolution for http
[apt.git] / methods / makefile
index ac76b56d9915a75c683c0f7cfe0c6f9210341755..2cfc15cae53b5f1a3bb461ca9d629d9a97b6d9da 100644 (file)
@@ -9,11 +9,41 @@ BIN := $(BIN)/methods
 # The file method
 PROGRAM=file
 SLIBS = -lapt-pkg 
+LIB_MAKES = apt-pkg/makefile
 SOURCE = file.cc
 include $(PROGRAM_H)
 
 # The copy method
 PROGRAM=copy
 SLIBS = -lapt-pkg 
+LIB_MAKES = apt-pkg/makefile
 SOURCE = copy.cc
 include $(PROGRAM_H)
+
+# The gzip method
+PROGRAM=gzip
+SLIBS = -lapt-pkg 
+LIB_MAKES = apt-pkg/makefile
+SOURCE = gzip.cc
+include $(PROGRAM_H)
+
+# The cdrom method
+PROGRAM=cdrom
+SLIBS = -lapt-pkg 
+LIB_MAKES = apt-pkg/makefile
+SOURCE = cdrom.cc
+include $(PROGRAM_H)
+
+# The http method
+PROGRAM=http
+SLIBS = -lapt-pkg 
+LIB_MAKES = apt-pkg/makefile
+SOURCE = http.cc rfc2553emu.cc
+include $(PROGRAM_H)
+
+# The ftp method
+PROGRAM=ftp
+SLIBS = -lapt-pkg 
+LIB_MAKES = apt-pkg/makefile
+SOURCE = ftp.cc
+include $(PROGRAM_H)