]> git.saurik.com Git - apt.git/blob - methods/makefile
Fixed pipelining and failures
[apt.git] / methods / makefile
1 # -*- make -*-
2 BASE=..
3 SUBDIR=methods
4
5 # Bring in the default rules
6 include ../buildlib/defaults.mak
7 BIN := $(BIN)/methods
8
9 # The file method
10 PROGRAM=file
11 SLIBS = -lapt-pkg
12 SOURCE = file.cc
13 include $(PROGRAM_H)
14
15 # The copy method
16 PROGRAM=copy
17 SLIBS = -lapt-pkg
18 SOURCE = copy.cc
19 include $(PROGRAM_H)
20
21 # The gzip method
22 PROGRAM=gzip
23 SLIBS = -lapt-pkg
24 SOURCE = gzip.cc
25 include $(PROGRAM_H)
26
27 # The cdrom method
28 PROGRAM=cdrom
29 SLIBS = -lapt-pkg
30 SOURCE = cdrom.cc
31 include $(PROGRAM_H)
32
33 # The http method
34 PROGRAM=http
35 SLIBS = -lapt-pkg
36 SOURCE = http.cc
37 include $(PROGRAM_H)