Merge apt--authentication--0
[ntk/apt.git] / apt-pkg / makefile
... / ...
CommitLineData
1# -*- make -*-
2BASE=..
3SUBDIR=apt-pkg
4
5# Header location
6SUBDIRS = deb contrib
7HEADER_TARGETDIRS = apt-pkg
8
9# Bring in the default rules
10include ../buildlib/defaults.mak
11
12# The library name, don't forget to update init.h and the copy in
13# methods/makefile - FIXME
14LIBRARY=apt-pkg
15LIBEXT=$(GLIBC_VER)$(LIBSTDCPP_VER)
16MAJOR=3.6
17MINOR=0
18SLIBS=$(PTHREADLIB) $(INTLLIBS)
19APT_DOMAIN:=libapt-pkg$(MAJOR)
20
21# Source code for the contributed non-core things
22SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \
23 contrib/configuration.cc contrib/progress.cc contrib/cmndline.cc \
24 contrib/md5.cc contrib/sha1.cc contrib/hashes.cc \
25 contrib/cdromutl.cc contrib/crc-16.cc \
26 contrib/fileutl.cc
27HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h \
28 md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h hashes.h
29
30# Source code for the core main library
31SOURCE+= pkgcache.cc version.cc depcache.cc \
32 orderlist.cc tagfile.cc sourcelist.cc packagemanager.cc \
33 pkgrecords.cc algorithms.cc acquire.cc\
34 acquire-worker.cc acquire-method.cc init.cc clean.cc \
35 srcrecords.cc cachefile.cc versionmatch.cc policy.cc \
36 pkgsystem.cc indexfile.cc pkgcachegen.cc acquire-item.cc \
37 indexrecords.cc vendor.cc vendorlist.cc
38HEADERS+= algorithms.h depcache.h pkgcachegen.h cacheiterators.h \
39 orderlist.h sourcelist.h packagemanager.h tagfile.h \
40 init.h pkgcache.h version.h progress.h pkgrecords.h \
41 acquire.h acquire-worker.h acquire-item.h acquire-method.h \
42 clean.h srcrecords.h cachefile.h versionmatch.h policy.h \
43 pkgsystem.h indexfile.h metaindex.h indexrecords.h vendor.h \
44 vendorlist.h
45
46# Source code for the debian specific components
47# In theory the deb headers do not need to be exported..
48SOURCE+= deb/deblistparser.cc deb/debrecords.cc deb/dpkgpm.cc \
49 deb/debsrcrecords.cc deb/debversion.cc deb/debsystem.cc \
50 deb/debindexfile.cc deb/debindexfile.cc deb/debmetaindex.cc
51HEADERS+= debversion.h debsrcrecords.h dpkgpm.h debrecords.h \
52 deblistparser.h debsystem.h debindexfile.h debmetaindex.h
53
54HEADERS := $(addprefix apt-pkg/,$(HEADERS))
55
56# Private header files
57HEADERS+= system.h
58
59include $(LIBRARY_H)