Makefile.am 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. ## Process this file with automake to produce Makefile.in
  2. if WITH_DSELECT
  3. MAYBE_DSELECT = dselect
  4. endif
  5. SUBDIRS = \
  6. libcompat \
  7. lib \
  8. src \
  9. $(MAYBE_DSELECT) \
  10. dpkg-deb \
  11. dpkg-split \
  12. utils \
  13. scripts \
  14. po \
  15. origins \
  16. man
  17. ACLOCAL_AMFLAGS = -I m4
  18. dist_pkgdata_DATA = cputable ostable triplettable
  19. EXTRA_DIST = \
  20. README.api \
  21. README.feature-removal-schedule \
  22. README.translators \
  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.docs \
  35. debian/dpkg.install \
  36. debian/dpkg.postinst \
  37. debian/dpkg.postrm \
  38. debian/dpkg.preinst \
  39. debian/dpkg.logrotate \
  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. # If we create the dist tarball from the git repository, make sure
  52. # that we're not forgetting some files...
  53. dist-hook:
  54. if [ -e .git ]; then \
  55. for file in `git ls-files | grep -v .gitignore`; do \
  56. if [ ! -e "$(distdir)/$$file" ]; then \
  57. echo "$$file is missing in $(distdir)" >&2 ; \
  58. exit 1 ; \
  59. fi ; \
  60. done ; \
  61. fi