From 8d3142533cdefa96f634cb07b41842ea73d24e8f Mon Sep 17 00:00:00 2001 From: Arch Librarian Date: Wed, 24 Nov 2004 10:00:24 +0000 Subject: Use the makefile parser Author: jgg Date: 2002-01-08 07:13:21 GMT Use the makefile parser --- python/makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'python') 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) -- cgit v1.2.3