Makefile.am 819 B

12345678910111213141516171819202122232425262728293031323334
  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. devel: $(UML_FILES:.txt=.png) $(TEXT_FILES:.txt=.html)
  10. .txt.html:
  11. if HAVE_ASCIIDOC
  12. $(AM_V_GEN) $(ASCIIDOC) -n $<
  13. else
  14. @echo "*** asciidoc is required to regenerate $(@); creating dummy ***";
  15. @echo "<html><body><p>" > $@
  16. @echo "Dummy document. Install asciidoc to correctly generate this file." >> $@
  17. @echo "</p></body></html>" >> $@
  18. endif
  19. .txt.png:
  20. if HAVE_PLANTUML
  21. $(AM_V_GEN) $(PLANTUML) $<
  22. else
  23. @echo "*** plantuml is required to regenerate $(@); creating dummy ***";
  24. @echo "Dummy image. Install plantuml to correctly generate this file." > $@
  25. endif
  26. CLEANFILES = \
  27. $(UML_FILES:.txt=.png) \
  28. $(TEXT_FILES:.txt=.html) \
  29. $(TEXT_FILES:.txt=.xml)