From: Hans U. N. <hu...@us...> - 2005-04-24 09:00:39
|
Update of /cvsroot/libexif/libexif/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15291/doc Modified Files: Makefile.am Log Message: fix dependencies for recursive make Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -d -r1.2 -r1.3 --- Makefile.am 12 Apr 2005 04:53:31 -0000 1.2 +++ Makefile.am 24 Apr 2005 09:00:28 -0000 1.3 @@ -7,10 +7,14 @@ if HAVE_DOXYGEN DOXYGEN_FILES = DOXYGEN_STAMPS = $(DOXYGEN_OUTPUT_DIR).stamp +# FIXME: Depending on the source files would be sufficient... $(DOXYGEN_OUTPUT_DIR).stamp: Doxyfile $(top_builddir)/libexif/libexif.la doxygen Doxyfile echo > $@ +$(top_builddir)/libexif/libexif.la: + cd $(top_builddir)/libexif && $(MAKE) libexif.la + $(HTML_APIDOC_DIR).tar.gz: $(DOXYGEN_OUTPUT_DIR).stamp (cd $(DOXYGEN_OUTPUT_DIR) && $(AMTAR) chof - $(HTML_APIDOC_DIR) | GZIP=--best gzip -c) > $@ |