makefile 2.3 KB

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