merge from the expermental2 branch
[ntk/apt.git] / apt-pkg / makefile
1 # -*- make -*-
2 BASE=..
3 SUBDIR=apt-pkg
4
5 # Header location
6 SUBDIRS = deb edsp contrib
7 HEADER_TARGETDIRS = apt-pkg
8
9 # Bring in the default rules
10 include ../buildlib/defaults.mak
11
12 # The library name and version (indirectly used from init.h)
13 include ../buildlib/libversion.mak
14 LIBRARY=apt-pkg
15 MAJOR=$(LIBAPTPKG_MAJOR)
16 MINOR=$(LIBAPTPKG_RELEASE)
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
24 APT_DOMAIN:=libapt-pkg$(LIBAPTPKG_MAJOR)
25
26 # Source code for the contributed non-core things
27 SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \
28 contrib/configuration.cc contrib/progress.cc contrib/cmndline.cc \
29 contrib/hashsum.cc contrib/md5.cc contrib/sha1.cc \
30 contrib/sha2_internal.cc\
31 contrib/hashes.cc \
32 contrib/cdromutl.cc contrib/crc-16.cc contrib/netrc.cc \
33 contrib/fileutl.cc
34 HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h netrc.h\
35 md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h sha2.h sha256.h\
36 sha2_internal.h \
37 hashes.h hashsum_template.h\
38 macros.h weakptr.h
39
40 # Source code for the core main library
41 SOURCE+= pkgcache.cc version.cc depcache.cc \
42 orderlist.cc tagfile.cc sourcelist.cc packagemanager.cc \
43 pkgrecords.cc algorithms.cc acquire.cc\
44 acquire-worker.cc acquire-method.cc init.cc clean.cc \
45 srcrecords.cc cachefile.cc versionmatch.cc policy.cc \
46 pkgsystem.cc indexfile.cc pkgcachegen.cc acquire-item.cc \
47 indexrecords.cc vendor.cc vendorlist.cc cdrom.cc indexcopy.cc \
48 aptconfiguration.cc cachefilter.cc cacheset.cc edsp.cc
49 HEADERS+= algorithms.h depcache.h pkgcachegen.h cacheiterators.h \
50 orderlist.h sourcelist.h packagemanager.h tagfile.h \
51 init.h pkgcache.h version.h progress.h pkgrecords.h \
52 acquire.h acquire-worker.h acquire-item.h acquire-method.h \
53 clean.h srcrecords.h cachefile.h versionmatch.h policy.h \
54 pkgsystem.h indexfile.h metaindex.h indexrecords.h vendor.h \
55 vendorlist.h cdrom.h indexcopy.h aptconfiguration.h \
56 cachefilter.h cacheset.h edsp.h
57
58 # Source code for the debian specific components
59 # In theory the deb headers do not need to be exported..
60 SOURCE+= deb/deblistparser.cc deb/debrecords.cc deb/dpkgpm.cc \
61 deb/debsrcrecords.cc deb/debversion.cc deb/debsystem.cc \
62 deb/debindexfile.cc deb/debindexfile.cc deb/debmetaindex.cc
63 HEADERS+= debversion.h debsrcrecords.h dpkgpm.h debrecords.h \
64 deblistparser.h debsystem.h debindexfile.h debmetaindex.h
65
66 # Source code for the APT resolver interface specific components
67 SOURCE+= edsp/edsplistparser.cc edsp/edspindexfile.cc edsp/edspsystem.cc
68 HEADERS+= edsplistparser.h edspindexfile.h edspsystem.h
69
70 HEADERS := $(addprefix apt-pkg/,$(HEADERS))
71
72 include $(LIBRARY_H)