]>
Commit | Line | Data |
---|---|---|
094a497d AL |
1 | # -*- make -*- |
2 | BASE=.. | |
3164dff9 | 3 | SUBDIR=apt-pkg |
094a497d AL |
4 | |
5 | # Header location | |
6 | SUBDIRS = deb contrib | |
7 | HEADER_TARGETDIRS = apt-pkg | |
8 | ||
9 | # Bring in the default rules | |
10 | include ../buildlib/defaults.mak | |
11 | ||
8c4bad46 AL |
12 | # The library name, don't forget to update init.h and the copy in |
13 | # methods/makefile - FIXME | |
094a497d | 14 | LIBRARY=apt-pkg |
a5b7cd82 | 15 | LIBEXT=$(GLIBC_VER)$(LIBSTDCPP_VER) |
81e9789b | 16 | MAJOR=4.8 |
f604cf55 | 17 | MINOR=0 |
cbc9bed8 | 18 | SLIBS=$(PTHREADLIB) $(INTLLIBS) -lutil -ldl |
c6e8074f | 19 | APT_DOMAIN:=libapt-pkg$(MAJOR) |
094a497d AL |
20 | |
21 | # Source code for the contributed non-core things | |
22 | SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \ | |
17a10bf5 | 23 | contrib/configuration.cc contrib/progress.cc contrib/cmndline.cc \ |
cde41ae8 | 24 | contrib/md5.cc contrib/sha1.cc contrib/sha256.cc contrib/hashes.cc \ |
63b1700f AL |
25 | contrib/cdromutl.cc contrib/crc-16.cc \ |
26 | contrib/fileutl.cc | |
b2e465d6 | 27 | HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h \ |
cde41ae8 | 28 | md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h sha256.h hashes.h |
404ec98e | 29 | |
b2e465d6 AL |
30 | # Source code for the core main library |
31 | SOURCE+= 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 \ |
a75c6a6e | 37 | indexrecords.cc vendor.cc vendorlist.cc cdrom.cc indexcopy.cc |
b2e465d6 AL |
38 | HEADERS+= 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 \ | |
7db98ffc | 43 | pkgsystem.h indexfile.h metaindex.h indexrecords.h vendor.h \ |
a75c6a6e | 44 | vendorlist.h cdrom.h indexcopy.h |
0118833a | 45 | |
1bc849af | 46 | # Source code for the debian specific components |
b2e465d6 AL |
47 | # In theory the deb headers do not need to be exported.. |
48 | SOURCE+= deb/deblistparser.cc deb/debrecords.cc deb/dpkgpm.cc \ | |
49 | deb/debsrcrecords.cc deb/debversion.cc deb/debsystem.cc \ | |
7db98ffc | 50 | deb/debindexfile.cc deb/debindexfile.cc deb/debmetaindex.cc |
b2e465d6 | 51 | HEADERS+= debversion.h debsrcrecords.h dpkgpm.h debrecords.h \ |
7db98ffc | 52 | deblistparser.h debsystem.h debindexfile.h debmetaindex.h |
0118833a | 53 | |
094a497d AL |
54 | HEADERS := $(addprefix apt-pkg/,$(HEADERS)) |
55 | ||
56 | # Private header files | |
cdcc6d34 | 57 | HEADERS+= system.h |
094a497d AL |
58 | |
59 | include $(LIBRARY_H) |