Annotation of gpl/axl/doc/Makefile.am, revision 1.1.1.2
1.1 misho 1: EXTRA_DIST = axl-doc.doxygen axl.css main-page-logo.png body_back.gif \
2: axl-doc-footer.html axl_babel_reading.png axl-components.png \
3: axl-doc-header.html image01.png ns_example.c ns_shaper.xml bg.png aspl-logo.png
4:
5: bin_SCRIPTS = initial_build_doc
6:
7: help:
8: @echo
9: @echo " Documentaticd on not built!:"
10: @echo " ~~~~~~~~~~~~~~~~~~~~~~~~~"
11: @echo " --> Doxygen documentation wasn't built because an stamp was detected: doc.stamp"
12: @echo " --> To regenerate or force doc building type make build_doc or remove doc.stamp";
13: @echo
14:
15: initial_build_doc:
16: @echo "checking documenation stamp..";
17: @test -e doc.stamp & make help
18: @test -e doc.stamp || make build_doc
19: @test -e doc.stamp || touch doc.stamp
20:
21: build_doc:
1.1.1.2 ! misho 22: rm -rf html/
1.1 misho 23: @echo "Generating module documentation..";
24: doxygen axl-doc.doxygen
25: cp $(top_srcdir)/doc/axl.css html
26: cp $(top_srcdir)/doc/bg.png html
27: cp $(top_srcdir)/doc/main-page-logo.png html
28: cp $(top_srcdir)/doc/aspl-logo.png html
29: cp $(top_srcdir)/doc/body_back.gif html
30:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>