add a first round of stuff needed for talking between APT and solvers
[ntk/apt.git] / apt-pkg / makefile
CommitLineData
094a497d
AL
1# -*- make -*-
2BASE=..
3164dff9 3SUBDIR=apt-pkg
094a497d
AL
4
5# Header location
6d38011b 6SUBDIRS = deb edsp contrib
094a497d
AL
7HEADER_TARGETDIRS = apt-pkg
8
9# Bring in the default rules
10include ../buildlib/defaults.mak
11
23d84658
DK
12# The library name and version (indirectly used from init.h)
13include ../buildlib/libversion.mak
094a497d 14LIBRARY=apt-pkg
23d84658
DK
15MAJOR=$(LIBAPTPKG_MAJOR)
16MINOR=$(LIBAPTPKG_RELEASE)
a3a03f5d 17SLIBS=$(PTHREADLIB) $(INTLLIBS) -lutil -ldl -lz
23d84658 18APT_DOMAIN:=libapt-pkg$(LIBAPTPKG_MAJOR)
094a497d
AL
19
20# Source code for the contributed non-core things
21SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \
17a10bf5 22 contrib/configuration.cc contrib/progress.cc contrib/cmndline.cc \
cde41ae8 23 contrib/md5.cc contrib/sha1.cc contrib/sha256.cc contrib/hashes.cc \
592b7800 24 contrib/cdromutl.cc contrib/crc-16.cc contrib/netrc.cc \
63b1700f 25 contrib/fileutl.cc
592b7800 26HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h netrc.h\
aea7f4c8 27 md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h sha256.h hashes.h \
229fb1a3 28 macros.h weakptr.h
404ec98e 29
b2e465d6
AL
30# Source code for the core main library
31SOURCE+= pkgcache.cc version.cc depcache.cc \
094a497d 32 orderlist.cc tagfile.cc sourcelist.cc packagemanager.cc \
b2e465d6 33 pkgrecords.cc algorithms.cc acquire.cc\
c9a64a4d 34 acquire-worker.cc acquire-method.cc init.cc clean.cc \
b2e465d6 35 srcrecords.cc cachefile.cc versionmatch.cc policy.cc \
7db98ffc 36 pkgsystem.cc indexfile.cc pkgcachegen.cc acquire-item.cc \
e878aedb 37 indexrecords.cc vendor.cc vendorlist.cc cdrom.cc indexcopy.cc \
8fde7239 38 aptconfiguration.cc cachefilter.cc cacheset.cc
b2e465d6
AL
39HEADERS+= algorithms.h depcache.h pkgcachegen.h cacheiterators.h \
40 orderlist.h sourcelist.h packagemanager.h tagfile.h \
41 init.h pkgcache.h version.h progress.h pkgrecords.h \
42 acquire.h acquire-worker.h acquire-item.h acquire-method.h \
43 clean.h srcrecords.h cachefile.h versionmatch.h policy.h \
7db98ffc 44 pkgsystem.h indexfile.h metaindex.h indexrecords.h vendor.h \
9ba5aa3b 45 vendorlist.h cdrom.h indexcopy.h aptconfiguration.h \
8fde7239 46 cachefilter.h cacheset.h
0118833a 47
1bc849af 48# Source code for the debian specific components
b2e465d6
AL
49# In theory the deb headers do not need to be exported..
50SOURCE+= deb/deblistparser.cc deb/debrecords.cc deb/dpkgpm.cc \
51 deb/debsrcrecords.cc deb/debversion.cc deb/debsystem.cc \
7db98ffc 52 deb/debindexfile.cc deb/debindexfile.cc deb/debmetaindex.cc
b2e465d6 53HEADERS+= debversion.h debsrcrecords.h dpkgpm.h debrecords.h \
7db98ffc 54 deblistparser.h debsystem.h debindexfile.h debmetaindex.h
0118833a 55
6d38011b
DK
56# Source code for the APT resolver interface specific components
57SOURCE+= edsp/edsplistparser.cc edsp/edspindexfile.cc edsp/edspsystem.cc \
58 edsp/edspwriter.cc
59HEADERS+= edsplistparser.h edspindexfile.h edspsystem.h edspwriter.h
60
094a497d
AL
61HEADERS := $(addprefix apt-pkg/,$(HEADERS))
62
094a497d 63include $(LIBRARY_H)