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