]>
Commit | Line | Data |
---|---|---|
9391a747 AL |
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) | |
561ab0db AL |
14 | |
15 | # The copy method | |
16 | PROGRAM=copy | |
17 | SLIBS = -lapt-pkg | |
18 | SOURCE = copy.cc | |
19 | include $(PROGRAM_H) | |
92173b19 AL |
20 | |
21 | # The gzip method | |
22 | PROGRAM=gzip | |
23 | SLIBS = -lapt-pkg | |
24 | SOURCE = gzip.cc | |
25 | include $(PROGRAM_H) | |
be4401bf | 26 | |
f46e7681 AL |
27 | # The cdrom method |
28 | PROGRAM=cdrom | |
29 | SLIBS = -lapt-pkg | |
30 | SOURCE = cdrom.cc | |
31 | include $(PROGRAM_H) | |
32 | ||
be4401bf AL |
33 | # The http method |
34 | PROGRAM=http | |
35 | SLIBS = -lapt-pkg | |
36 | SOURCE = http.cc | |
37 | include $(PROGRAM_H) |