Annotation of gpl/axl/doc/Makefile.am, revision 1.1.1.1

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:
                     22:        @echo "Generating module documentation..";
                     23:        doxygen axl-doc.doxygen
                     24:        cp $(top_srcdir)/doc/axl.css html
                     25:        cp $(top_srcdir)/doc/bg.png html
                     26:        cp $(top_srcdir)/doc/main-page-logo.png html
                     27:        cp $(top_srcdir)/doc/aspl-logo.png html
                     28:        cp $(top_srcdir)/doc/body_back.gif html
                     29: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>