Makefile.am 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. src \
  8. $(MAYBE_DSELECT) \
  9. dpkg-deb \
  10. dpkg-split \
  11. utils \
  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.api \
  20. README.feature-removal-schedule \
  21. README.translators \
  22. doc/triggers.txt \
  23. debian/archtable \
  24. debian/changelog \
  25. debian/compat \
  26. debian/control \
  27. debian/copyright \
  28. debian/dpkg-dev.docs \
  29. debian/dpkg-dev.install \
  30. debian/dpkg-dev.preinst \
  31. debian/dpkg-dev.lintian-overrides \
  32. debian/dpkg.cfg \
  33. debian/dpkg.docs \
  34. debian/dpkg.install \
  35. debian/dpkg.postinst \
  36. debian/dpkg.postrm \
  37. debian/dpkg.preinst \
  38. debian/dpkg.logrotate \
  39. debian/dpkg.links \
  40. debian/dpkg.lintian-overrides \
  41. debian/dselect.cfg \
  42. debian/dselect.docs \
  43. debian/dselect.install \
  44. debian/dselect.preinst \
  45. debian/dselect.lintian-overrides \
  46. debian/source.lintian-overrides \
  47. debian/usertags \
  48. debian/rules \
  49. debian/shlibs.default \
  50. debian/shlibs.override
  51. .PHONY: ChangeLog
  52. DISTCLEANFILES = ChangeLog
  53. ChangeLog:
  54. git log -C --stat 1.15.0.. >$@
  55. # If we create the dist tarball from the git repository, make sure
  56. # that we're not forgetting some files...
  57. dist-hook:
  58. if [ -e .git ]; then \
  59. for file in `git ls-files | grep -v .gitignore`; do \
  60. if [ ! -e "$(distdir)/$$file" ]; then \
  61. echo "$$file is missing in $(distdir)" >&2 ; \
  62. exit 1 ; \
  63. fi ; \
  64. done ; \
  65. fi