New http method
[ntk/apt.git] / methods / makefile
CommitLineData
9391a747
AL
1# -*- make -*-
2BASE=..
3SUBDIR=methods
4
5# Bring in the default rules
6include ../buildlib/defaults.mak
7BIN := $(BIN)/methods
8
9# The file method
10PROGRAM=file
11SLIBS = -lapt-pkg
12SOURCE = file.cc
13include $(PROGRAM_H)
561ab0db
AL
14
15# The copy method
16PROGRAM=copy
17SLIBS = -lapt-pkg
18SOURCE = copy.cc
19include $(PROGRAM_H)
92173b19
AL
20
21# The gzip method
22PROGRAM=gzip
23SLIBS = -lapt-pkg
24SOURCE = gzip.cc
25include $(PROGRAM_H)
be4401bf
AL
26
27# The http method
28PROGRAM=http
29SLIBS = -lapt-pkg
30SOURCE = http.cc
31include $(PROGRAM_H)