Makefile.am 834 B

123456789101112131415161718192021222324252627282930313233343536
  1. UML_FILES = \
  2. overview.txt \
  3. auth-local.txt \
  4. auth-mapped.txt \
  5. memmgr-mapped-init.txt \
  6. memmgr-mapped-reload.txt
  7. TEXT_FILES = \
  8. data-source-classes.txt
  9. BUILT_SOURCES = \
  10. $(UML_FILES:.txt=.png) \
  11. $(TEXT_FILES:.txt=.html)
  12. .txt.html:
  13. if HAVE_ASCIIDOC
  14. $(AM_V_GEN) $(ASCIIDOC) -n $<
  15. else
  16. @echo "*** asciidoc is required to regenerate $(@); creating dummy ***";
  17. @echo "<html><body><p>" > $@
  18. @echo "Dummy document. Install asciidoc to correctly generate this file." >> $@
  19. @echo "</p></body></html>" >> $@
  20. endif
  21. .txt.png:
  22. if HAVE_PLANTUML
  23. $(AM_V_GEN) $(PLANTUML) $<
  24. else
  25. @echo "*** plantuml is required to regenerate $(@); creating dummy ***";
  26. @echo "Dummy image. Install plantuml to correctly generate this file." > $@
  27. endif
  28. CLEANFILES = \
  29. $(UML_FILES:.txt=.png) \
  30. $(TEXT_FILES:.txt=.html) \
  31. $(TEXT_FILES:.txt=.xml)