blob: 1656f57003857c4ce471eb6817007d306bec13ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# -*- make -*-
BASE=..
SUBDIR=methods
# Bring in the default rules
include ../buildlib/defaults.mak
BIN := $(BIN)/methods
# The file method
PROGRAM=file
SLIBS = -lapt-pkg
SOURCE = file.cc
include $(PROGRAM_H)
# The copy method
PROGRAM=copy
SLIBS = -lapt-pkg
SOURCE = copy.cc
include $(PROGRAM_H)
# The gzip method
PROGRAM=gzip
SLIBS = -lapt-pkg
SOURCE = gzip.cc
include $(PROGRAM_H)
|