Makefile.am 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ## Process this file with automake to produce Makefile.in
  2. if WITH_DSELECT
  3. MAYBE_DSELECT = dselect
  4. endif
  5. SUBDIRS = \
  6. lib \
  7. dpkg-deb \
  8. dpkg-split \
  9. src \
  10. utils \
  11. $(MAYBE_DSELECT) \
  12. scripts \
  13. po \
  14. man
  15. ACLOCAL_AMFLAGS = -I m4
  16. dist_pkgdata_DATA = cputable ostable triplettable
  17. EXTRA_DIST = \
  18. ChangeLog.old \
  19. README.translators \
  20. doc/README.api \
  21. doc/README.feature-removal-schedule \
  22. doc/coding-style.txt \
  23. doc/triggers.txt \
  24. debian/archtable \
  25. debian/changelog \
  26. debian/compat \
  27. debian/control \
  28. debian/copyright \
  29. debian/dpkg-dev.docs \
  30. debian/dpkg-dev.install \
  31. debian/dpkg-dev.preinst \
  32. debian/dpkg-dev.lintian-overrides \
  33. debian/dpkg.cfg \
  34. debian/dpkg.cron.daily \
  35. debian/dpkg.docs \
  36. debian/dpkg.install \
  37. debian/dpkg.postinst \
  38. debian/dpkg.postrm \
  39. debian/dpkg.preinst \
  40. debian/dpkg.logrotate \
  41. debian/dpkg.links \
  42. debian/dpkg.lintian-overrides \
  43. debian/dselect.cfg \
  44. debian/dselect.docs \
  45. debian/dselect.install \
  46. debian/dselect.preinst \
  47. debian/dselect.lintian-overrides \
  48. debian/source.lintian-overrides \
  49. debian/usertags \
  50. debian/rules \
  51. debian/shlibs.default \
  52. debian/shlibs.override
  53. .PHONY: ChangeLog
  54. DISTCLEANFILES = ChangeLog
  55. ChangeLog:
  56. git log -C --stat 1.15.0.. >$@
  57. # If we create the dist tarball from the git repository, make sure
  58. # that we're not forgetting some files...
  59. dist-hook:
  60. if [ -e .git ]; then \
  61. for file in `git ls-files | grep -v .gitignore`; do \
  62. if [ ! -e "$(distdir)/$$file" ]; then \
  63. echo "$$file is missing in $(distdir)" >&2 ; \
  64. exit 1 ; \
  65. fi ; \
  66. done ; \
  67. fi