diff options
| author | Arch Librarian <arch@canonical.com> | 2004-11-24 10:00:24 +0000 |
|---|---|---|
| committer | Arch Librarian <arch@canonical.com> | 2004-11-24 10:00:24 +0000 |
| commit | 8d3142533cdefa96f634cb07b41842ea73d24e8f (patch) | |
| tree | f045b34629a45a343ee095e6a7e7be71ff301f35 /python | |
| parent | 83444392a4c3a90b3103aa02d47426e3a9649a05 (diff) | |
| download | python-apt-8d3142533cdefa96f634cb07b41842ea73d24e8f.tar.gz | |
Use the makefile parser
Author: jgg
Date: 2002-01-08 07:13:21 GMT
Use the makefile parser
Diffstat (limited to 'python')
| -rw-r--r-- | python/makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/python/makefile b/python/makefile index abe08d50..12dea22f 100644 --- a/python/makefile +++ b/python/makefile @@ -9,13 +9,15 @@ include ../buildlib/defaults.mak MODULE=apt_pkg SLIBS = -lapt-pkg LIB_MAKES = apt-pkg/makefile -SOURCE = apt_pkgmodule.cc configuration.cc generic.cc tag.cc string.cc \ - cache.cc pkgrecords.cc +APT_PKG_SRC = apt_pkgmodule.cc configuration.cc generic.cc tag.cc string.cc \ + cache.cc pkgrecords.cc +SOURCE := $(APT_PKG_SRC) include $(PYTHON_H) # The apt_int module.. MODULE=apt_inst SLIBS = -lapt-inst -lapt-pkg LIB_MAKES = apt-inst/makefile -SOURCE = apt_instmodule.cc tar.cc generic.cc +APT_INST_SRC = apt_instmodule.cc tar.cc generic.cc +SOURCE := $(APT_INST_SRC) include $(PYTHON_H) |
