6 SUBDIRS = deb edsp contrib
 
   7 HEADER_TARGETDIRS = apt-pkg
 
   9 # Bring in the default rules
 
  10 include ../buildlib/defaults.mak
 
  12 # The library name and version (indirectly used from init.h)
 
  13 include ../buildlib/libversion.mak
 
  15 MAJOR=$(LIBAPTPKG_MAJOR)
 
  16 MINOR=$(LIBAPTPKG_RELEASE)
 
  17 SLIBS=$(PTHREADLIB) $(INTLLIBS) -lutil -ldl -lz
 
  18 APT_DOMAIN:=libapt-pkg$(LIBAPTPKG_MAJOR)
 
  20 # Source code for the contributed non-core things
 
  21 SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \
 
  22          contrib/configuration.cc contrib/progress.cc contrib/cmndline.cc \
 
  23          contrib/hashsum.cc contrib/md5.cc contrib/sha1.cc \
 
  24          contrib/sha2_internal.cc\
 
  26          contrib/cdromutl.cc contrib/crc-16.cc contrib/netrc.cc \
 
  28 HEADERS = mmap.h error.h configuration.h fileutl.h  cmndline.h netrc.h\
 
  29           md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h sha2.h \
 
  31           hashes.h hashsum_template.h\
 
  34 # Source code for the core main library
 
  35 SOURCE+= pkgcache.cc version.cc depcache.cc \
 
  36          orderlist.cc tagfile.cc sourcelist.cc packagemanager.cc \
 
  37          pkgrecords.cc algorithms.cc acquire.cc\
 
  38          acquire-worker.cc acquire-method.cc init.cc clean.cc \
 
  39          srcrecords.cc cachefile.cc versionmatch.cc policy.cc \
 
  40          pkgsystem.cc indexfile.cc pkgcachegen.cc acquire-item.cc \
 
  41          indexrecords.cc vendor.cc vendorlist.cc cdrom.cc indexcopy.cc \
 
  42          aptconfiguration.cc cachefilter.cc cacheset.cc edsp.cc
 
  43 HEADERS+= algorithms.h depcache.h pkgcachegen.h cacheiterators.h \
 
  44           orderlist.h sourcelist.h packagemanager.h tagfile.h \
 
  45           init.h pkgcache.h version.h progress.h pkgrecords.h \
 
  46           acquire.h acquire-worker.h acquire-item.h acquire-method.h \
 
  47           clean.h srcrecords.h cachefile.h versionmatch.h policy.h \
 
  48           pkgsystem.h indexfile.h metaindex.h indexrecords.h vendor.h \
 
  49           vendorlist.h cdrom.h indexcopy.h aptconfiguration.h \
 
  50           cachefilter.h cacheset.h edsp.h
 
  52 # Source code for the debian specific components
 
  53 # In theory the deb headers do not need to be exported..
 
  54 SOURCE+= deb/deblistparser.cc deb/debrecords.cc deb/dpkgpm.cc \
 
  55          deb/debsrcrecords.cc deb/debversion.cc deb/debsystem.cc \
 
  56          deb/debindexfile.cc deb/debindexfile.cc deb/debmetaindex.cc
 
  57 HEADERS+= debversion.h debsrcrecords.h dpkgpm.h debrecords.h \
 
  58           deblistparser.h debsystem.h debindexfile.h debmetaindex.h
 
  60 # Source code for the APT resolver interface specific components
 
  61 SOURCE+= edsp/edsplistparser.cc edsp/edspindexfile.cc edsp/edspsystem.cc
 
  62 HEADERS+= edsplistparser.h edspindexfile.h edspsystem.h
 
  64 HEADERS := $(addprefix apt-pkg/,$(HEADERS))