* cmdline/apt-config.cc:
[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)
c4997486
DK
17SLIBS=$(PTHREADLIB) $(INTLLIBS) -lutil -ldl
18ifeq ($(HAVE_ZLIB),yes)
19SLIBS+= -lz
20endif
21ifeq ($(HAVE_BZ2),yes)
22SLIBS+= -lbz2
23endif
23d84658 24APT_DOMAIN:=libapt-pkg$(LIBAPTPKG_MAJOR)
094a497d
AL
25
26# Source code for the contributed non-core things
27SOURCE = 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 \
84a0890e 30 contrib/sha2_internal.cc\
54ce88fd 31 contrib/hashes.cc \
592b7800 32 contrib/cdromutl.cc contrib/crc-16.cc contrib/netrc.cc \
63b1700f 33 contrib/fileutl.cc
592b7800 34HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h netrc.h\
6fd07d3a 35 md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h sha2.h sha256.h\
84a0890e 36 sha2_internal.h \
7ac56f8f 37 hashes.h hashsum_template.h\
229fb1a3 38 macros.h weakptr.h
404ec98e 39
b2e465d6
AL
40# Source code for the core main library
41SOURCE+= pkgcache.cc version.cc depcache.cc \
094a497d 42 orderlist.cc tagfile.cc sourcelist.cc packagemanager.cc \
b2e465d6 43 pkgrecords.cc algorithms.cc acquire.cc\
c9a64a4d 44 acquire-worker.cc acquire-method.cc init.cc clean.cc \
b2e465d6 45 srcrecords.cc cachefile.cc versionmatch.cc policy.cc \
7db98ffc 46 pkgsystem.cc indexfile.cc pkgcachegen.cc acquire-item.cc \
e878aedb 47 indexrecords.cc vendor.cc vendorlist.cc cdrom.cc indexcopy.cc \
c3b85126 48 aptconfiguration.cc cachefilter.cc cacheset.cc edsp.cc
b2e465d6
AL
49HEADERS+= 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 \
7db98ffc 54 pkgsystem.h indexfile.h metaindex.h indexrecords.h vendor.h \
9ba5aa3b 55 vendorlist.h cdrom.h indexcopy.h aptconfiguration.h \
c3b85126 56 cachefilter.h cacheset.h edsp.h
0118833a 57
1bc849af 58# Source code for the debian specific components
b2e465d6
AL
59# In theory the deb headers do not need to be exported..
60SOURCE+= deb/deblistparser.cc deb/debrecords.cc deb/dpkgpm.cc \
61 deb/debsrcrecords.cc deb/debversion.cc deb/debsystem.cc \
7db98ffc 62 deb/debindexfile.cc deb/debindexfile.cc deb/debmetaindex.cc
b2e465d6 63HEADERS+= debversion.h debsrcrecords.h dpkgpm.h debrecords.h \
7db98ffc 64 deblistparser.h debsystem.h debindexfile.h debmetaindex.h
0118833a 65
6d38011b 66# Source code for the APT resolver interface specific components
c3b85126
DK
67SOURCE+= edsp/edsplistparser.cc edsp/edspindexfile.cc edsp/edspsystem.cc
68HEADERS+= edsplistparser.h edspindexfile.h edspsystem.h
6d38011b 69
094a497d
AL
70HEADERS := $(addprefix apt-pkg/,$(HEADERS))
71
094a497d 72include $(LIBRARY_H)