]>
Commit | Line | Data |
---|---|---|
da6ee469 JF |
1 | # -*- make -*- |
2 | BASE=.. | |
3 | SUBDIR=apt-pkg | |
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 | ||
12 | # The library name, don't forget to update init.h and the copy in | |
13 | # methods/makefile - FIXME | |
14 | LIBRARY=apt-pkg | |
15 | LIBEXT= | |
16 | #$(GLIBC_VER)$(LIBSTDCPP_VER) | |
00ec24d0 | 17 | MAJOR=4.6 |
da6ee469 | 18 | MINOR=0 |
00ec24d0 | 19 | SLIBS=$(PTHREADLIB) $(INTLLIBS) -lutil $(LIBICONV) |
da6ee469 JF |
20 | APT_DOMAIN:=libapt-pkg$(MAJOR) |
21 | ||
22 | # Source code for the contributed non-core things | |
23 | SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \ | |
24 | contrib/configuration.cc contrib/progress.cc contrib/cmndline.cc \ | |
25 | contrib/md5.cc contrib/sha1.cc contrib/sha256.cc contrib/hashes.cc \ | |
26 | contrib/cdromutl.cc contrib/crc-16.cc \ | |
27 | contrib/fileutl.cc | |
28 | HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h \ | |
29 | md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h sha256.h hashes.h | |
30 | ||
31 | # Source code for the core main library | |
05d8d514 | 32 | SOURCE+= pkgcache.cc version.cc depcache.cc lookup3.cc \ |
da6ee469 JF |
33 | orderlist.cc tagfile.cc sourcelist.cc packagemanager.cc \ |
34 | pkgrecords.cc algorithms.cc acquire.cc\ | |
35 | acquire-worker.cc acquire-method.cc init.cc clean.cc \ | |
36 | srcrecords.cc cachefile.cc versionmatch.cc policy.cc \ | |
37 | pkgsystem.cc indexfile.cc pkgcachegen.cc acquire-item.cc \ | |
38 | indexrecords.cc vendor.cc vendorlist.cc cdrom.cc indexcopy.cc | |
39 | HEADERS+= 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 \ | |
44 | pkgsystem.h indexfile.h metaindex.h indexrecords.h vendor.h \ | |
45 | vendorlist.h cdrom.h indexcopy.h | |
46 | ||
47 | # Source code for the debian specific components | |
48 | # In theory the deb headers do not need to be exported.. | |
49 | SOURCE+= deb/deblistparser.cc deb/debrecords.cc deb/dpkgpm.cc \ | |
50 | deb/debsrcrecords.cc deb/debversion.cc deb/debsystem.cc \ | |
51 | deb/debindexfile.cc deb/debindexfile.cc deb/debmetaindex.cc | |
52 | HEADERS+= debversion.h debsrcrecords.h dpkgpm.h debrecords.h \ | |
53 | deblistparser.h debsystem.h debindexfile.h debmetaindex.h | |
54 | ||
55 | HEADERS := $(addprefix apt-pkg/,$(HEADERS)) | |
56 | ||
57 | # Private header files | |
58 | HEADERS+= system.h | |
59 | ||
60 | include $(LIBRARY_H) |