makefile 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # -*- make -*-
  2. BASE=..
  3. SUBDIR=apt-pkg
  4. # Header location
  5. SUBDIRS = deb contrib
  6. HEADER_TARGETDIRS = apt-pkg
  7. # Bring in the default rules
  8. include ../buildlib/defaults.mak
  9. # The library name and version (indirectly used from init.h)
  10. include ../buildlib/libversion.mak
  11. LIBRARY=apt-pkg
  12. MAJOR=$(LIBAPTPKG_MAJOR)
  13. MINOR=$(LIBAPTPKG_RELEASE)
  14. SLIBS=$(PTHREADLIB) $(INTLLIBS) -lutil -ldl
  15. APT_DOMAIN:=libapt-pkg$(LIBAPTPKG_MAJOR)
  16. # Source code for the contributed non-core things
  17. SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \
  18. contrib/configuration.cc contrib/progress.cc contrib/cmndline.cc \
  19. contrib/md5.cc contrib/sha1.cc contrib/sha256.cc contrib/hashes.cc \
  20. contrib/cdromutl.cc contrib/crc-16.cc \
  21. contrib/fileutl.cc
  22. HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h \
  23. md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h sha256.h hashes.h
  24. # Source code for the core main library
  25. SOURCE+= pkgcache.cc version.cc depcache.cc \
  26. orderlist.cc tagfile.cc sourcelist.cc packagemanager.cc \
  27. pkgrecords.cc algorithms.cc acquire.cc\
  28. acquire-worker.cc acquire-method.cc init.cc clean.cc \
  29. srcrecords.cc cachefile.cc versionmatch.cc policy.cc \
  30. pkgsystem.cc indexfile.cc pkgcachegen.cc acquire-item.cc \
  31. indexrecords.cc vendor.cc vendorlist.cc cdrom.cc indexcopy.cc \
  32. aptconfiguration.cc
  33. HEADERS+= algorithms.h depcache.h pkgcachegen.h cacheiterators.h \
  34. orderlist.h sourcelist.h packagemanager.h tagfile.h \
  35. init.h pkgcache.h version.h progress.h pkgrecords.h \
  36. acquire.h acquire-worker.h acquire-item.h acquire-method.h \
  37. clean.h srcrecords.h cachefile.h versionmatch.h policy.h \
  38. pkgsystem.h indexfile.h metaindex.h indexrecords.h vendor.h \
  39. vendorlist.h cdrom.h indexcopy.h aptconfiguration.h
  40. # Source code for the debian specific components
  41. # In theory the deb headers do not need to be exported..
  42. SOURCE+= deb/deblistparser.cc deb/debrecords.cc deb/dpkgpm.cc \
  43. deb/debsrcrecords.cc deb/debversion.cc deb/debsystem.cc \
  44. deb/debindexfile.cc deb/debindexfile.cc deb/debmetaindex.cc
  45. HEADERS+= debversion.h debsrcrecords.h dpkgpm.h debrecords.h \
  46. deblistparser.h debsystem.h debindexfile.h debmetaindex.h
  47. HEADERS := $(addprefix apt-pkg/,$(HEADERS))
  48. # Private header files
  49. HEADERS+= system.h
  50. include $(LIBRARY_H)