Makefile.am 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.links \
  41. debian/dpkg.lintian-overrides \
  42. debian/dselect.cfg \
  43. debian/dselect.docs \
  44. debian/dselect.install \
  45. debian/dselect.preinst \
  46. debian/dselect.lintian-overrides \
  47. debian/source.lintian-overrides \
  48. debian/usertags \
  49. debian/rules \
  50. debian/shlibs.default \
  51. debian/shlibs.override
  52. # If we create the dist tarball from the git repository, make sure
  53. # that we're not forgetting some files...
  54. dist-hook:
  55. if [ -e .git ]; then \
  56. for file in `git ls-files | grep -v .gitignore`; do \
  57. if [ ! -e "$(distdir)/$$file" ]; then \
  58. echo "$$file is missing in $(distdir)" >&2 ; \
  59. exit 1 ; \
  60. fi ; \
  61. done ; \
  62. fi