Edit

kc3-lang/ftgl/docs/Makefile.am

Branch :

  • Show log

    Commit

  • Author : brlcad
    Date : 2008-04-28 17:31:42
    Hash : 3674c4d1
    Message : specify minimum versions, make ac be 2.58 and am be 1.6 (needed in order to support os x 10.4 out-of-the-box). PKG_CHECK_MODULES doesn't seem to wrap the args properly so you can't embed AC_MSG_RESULT, make a zip and bzip2 when we make a dist, and provide NULL to make am happy

  • docs/Makefile.am
  • if HAVE_DOXYGEN
    htmldocdir = $(datadir)/doc/ftgl/html
    htmldoc_DATA = html/doxygen.css
    endif
    
    html/doxygen.css: doc-stamp
    doc-stamp: ftgl_dox
    	$(DOXYGEN) $^
    	touch $@
    
    clean: clean-local
    clean-local:
    	$(RM) -rf html
    	$(RM) doc-stamp
    
    if HAVE_DOXYGEN
    install-data-local: html/doxygen.css
    	$(mkinstalldirs) $(DESTDIR)$(datadir)/doc/$(PACKAGE_NAME)/html
    	$(INSTALL) -m 0644 \
    	  `find html -name '*.html' -o -name '*.gif' -o -name '*.png'` \
    	  $(DESTDIR)$(datadir)/doc/$(PACKAGE_NAME)/html/
    endif
    
    EXTRA_DIST = \
        ftgl_dox \
        FTGL.html \
        FTGL_1_3.gif \
        images/ftgldemo.jpg \
        images/metrics.png \
        html.tar.gz \
        $(NULL)
    
    NULL =