makefile 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 -lz
  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/sha2.cc \
  20. contrib/sha2_internal.cc\
  21. contrib/hashes.cc \
  22. contrib/cdromutl.cc contrib/crc-16.cc contrib/netrc.cc \
  23. contrib/fileutl.cc
  24. HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h netrc.h\
  25. md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h sha2.h \
  26. sha2_internal.h \
  27. hashes.h hashsum_template.h\
  28. macros.h weakptr.h
  29. # Source code for the core main library
  30. SOURCE+= pkgcache.cc version.cc depcache.cc \
  31. orderlist.cc tagfile.cc sourcelist.cc packagemanager.cc \
  32. pkgrecords.cc algorithms.cc acquire.cc\
  33. acquire-worker.cc acquire-method.cc init.cc clean.cc \
  34. srcrecords.cc cachefile.cc versionmatch.cc policy.cc \
  35. pkgsystem.cc indexfile.cc pkgcachegen.cc acquire-item.cc \
  36. indexrecords.cc vendor.cc vendorlist.cc cdrom.cc indexcopy.cc \
  37. aptconfiguration.cc cachefilter.cc cacheset.cc
  38. HEADERS+= algorithms.h depcache.h pkgcachegen.h cacheiterators.h \
  39. orderlist.h sourcelist.h packagemanager.h tagfile.h \
  40. init.h pkgcache.h version.h progress.h pkgrecords.h \
  41. acquire.h acquire-worker.h acquire-item.h acquire-method.h \
  42. clean.h srcrecords.h cachefile.h versionmatch.h policy.h \
  43. pkgsystem.h indexfile.h metaindex.h indexrecords.h vendor.h \
  44. vendorlist.h cdrom.h indexcopy.h aptconfiguration.h \
  45. cachefilter.h cacheset.h
  46. # Source code for the debian specific components
  47. # In theory the deb headers do not need to be exported..
  48. SOURCE+= deb/deblistparser.cc deb/debrecords.cc deb/dpkgpm.cc \
  49. deb/debsrcrecords.cc deb/debversion.cc deb/debsystem.cc \
  50. deb/debindexfile.cc deb/debindexfile.cc deb/debmetaindex.cc
  51. HEADERS+= debversion.h debsrcrecords.h dpkgpm.h debrecords.h \
  52. deblistparser.h debsystem.h debindexfile.h debmetaindex.h
  53. HEADERS := $(addprefix apt-pkg/,$(HEADERS))
  54. include $(LIBRARY_H)