summaryrefslogtreecommitdiff
path: root/methods
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:53:31 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:53:31 +0000
commitf760b7d2124f9b4498b62c481f08e56cc617e675 (patch)
tree287632c077177adb69b319c1fa44204f784a7d9b /methods
parent1fcbfcb8ba78224fd0e4d532d4fa976f0ea00fef (diff)
Fixed make system to rebuild binaries when shlib versio...
Author: jgg Date: 1999-04-12 04:28:46 GMT Fixed make system to rebuild binaries when shlib version changes
Diffstat (limited to 'methods')
-rw-r--r--methods/makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/methods/makefile b/methods/makefile
index 00fec2bc8..dc6b88780 100644
--- a/methods/makefile
+++ b/methods/makefile
@@ -9,35 +9,41 @@ BIN := $(BIN)/methods
# The file method
PROGRAM=file
SLIBS = -lapt-pkg
+LIB_MAKES = apt-pkg/makefile
SOURCE = file.cc
include $(PROGRAM_H)
# The copy method
PROGRAM=copy
SLIBS = -lapt-pkg
+LIB_MAKES = apt-pkg/makefile
SOURCE = copy.cc
include $(PROGRAM_H)
# The gzip method
PROGRAM=gzip
SLIBS = -lapt-pkg
+LIB_MAKES = apt-pkg/makefile
SOURCE = gzip.cc
include $(PROGRAM_H)
# The cdrom method
PROGRAM=cdrom
SLIBS = -lapt-pkg
+LIB_MAKES = apt-pkg/makefile
SOURCE = cdrom.cc
include $(PROGRAM_H)
# The http method
PROGRAM=http
SLIBS = -lapt-pkg
+LIB_MAKES = apt-pkg/makefile
SOURCE = http.cc
include $(PROGRAM_H)
# The ftp method
PROGRAM=ftp
SLIBS = -lapt-pkg
+LIB_MAKES = apt-pkg/makefile
SOURCE = ftp.cc
include $(PROGRAM_H)