]> git.saurik.com Git - apt.git/blame_incremental - methods/makefile
Multiprotocol connect
[apt.git] / methods / makefile
... / ...
CommitLineData
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
12LIB_MAKES = apt-pkg/makefile
13SOURCE = file.cc
14include $(PROGRAM_H)
15
16# The copy method
17PROGRAM=copy
18SLIBS = -lapt-pkg
19LIB_MAKES = apt-pkg/makefile
20SOURCE = copy.cc
21include $(PROGRAM_H)
22
23# The gzip method
24PROGRAM=gzip
25SLIBS = -lapt-pkg
26LIB_MAKES = apt-pkg/makefile
27SOURCE = gzip.cc
28include $(PROGRAM_H)
29
30# The cdrom method
31PROGRAM=cdrom
32SLIBS = -lapt-pkg
33LIB_MAKES = apt-pkg/makefile
34SOURCE = cdrom.cc
35include $(PROGRAM_H)
36
37# The http method
38PROGRAM=http
39SLIBS = -lapt-pkg
40LIB_MAKES = apt-pkg/makefile
41SOURCE = http.cc rfc2553emu.cc connect.cc
42include $(PROGRAM_H)
43
44# The ftp method
45PROGRAM=ftp
46SLIBS = -lapt-pkg
47LIB_MAKES = apt-pkg/makefile
48SOURCE = ftp.cc rfc2553emu.cc connect.cc
49include $(PROGRAM_H)