File: makefile

package info (click to toggle)
python-apt 0.7.7.1%2Bnmu1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,276 kB
  • ctags: 930
  • sloc: cpp: 4,126; python: 3,108; makefile: 52
file content (26 lines) | stat: -rw-r--r-- 701 bytes parent folder | download
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
26
# -*- 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
APT_PKG_SRC = apt_pkgmodule.cc configuration.cc generic.cc tag.cc string.cc \
              cache.cc pkgrecords.cc pkgsrcrecords.cc sourcelist.cc \
	      depcache.cc progress.cc cdrom.cc acquire.cc pkgmanager.cc \
	      indexfile.cc metaindex.cc
SOURCE := $(APT_PKG_SRC)	      
include $(PYTHON_H) progress.h

# The apt_int module.. 
MODULE=apt_inst
SLIBS = -lapt-inst -lapt-pkg
LIB_MAKES = apt-inst/makefile
APT_INST_SRC = apt_instmodule.cc tar.cc generic.cc
SOURCE := $(APT_INST_SRC)	      
include $(PYTHON_H)