Makefile.am 570 B

12345678910111213141516171819202122232425262728
  1. ## Process this file with automake to produce Makefile.in
  2. ## Created by Anjuta - will be overwritten
  3. ## If you don't want it to overwrite it,
  4. ## Please disable it in the Anjuta project configuration
  5. SUBDIRS = po src data
  6. berusky2docdir = ${prefix}/doc/berusky2
  7. berusky2doc_DATA = \
  8. README\
  9. COPYING\
  10. AUTHORS\
  11. ChangeLog\
  12. INSTALL\
  13. NEWS\
  14. TODO
  15. EXTRA_DIST = $(berusky2doc_DATA)
  16. # Copy all the spec files. Of cource, only one is actually used.
  17. dist-hook:
  18. for specfile in *.spec; do \
  19. if test -f $$specfile; then \
  20. cp -p $$specfile $(distdir); \
  21. fi \
  22. done