New http method
[ntk/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 http method
28 PROGRAM=http
29 SLIBS = -lapt-pkg
30 SOURCE = http.cc
31 include $(PROGRAM_H)