blob: abe08d5014e065a948a5fb3b3ec528069aaf9452 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# -*- make -*-
BASE=..
SUBDIR=python
# Bring in the default rules
include ../buildlib/defaults.mak
# The apt_pkg module
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
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
include $(PYTHON_H)
|