summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJonathon Jongsma <jjongsma@gnome.org>2006-07-05 01:22:46 +0000
committerJonathon Jongsma <jjongsma@gnome.org>2006-07-05 01:22:46 +0000
commit3cfc72222a9e28b8dffbeda1f22c70daae12cb82 (patch)
treecefe78b0789b34dec3c6bacd0f14611b6f789b96 /docs
parent892032a4bd1e0bb24c891b48d37ec792fb2541b5 (diff)
2006-07-04 Jonathon Jongsma <jonathon.jongsma@gmail.com>
* Makefile.am: add ability to do snapshot releases to the cairographics.org/snapshots/ directory in addition to official releases * configure.in: bumped the revision to 1.1.10 in preparation for a snapshot release of the 1.2 API * docs/reference/Makefile.am: fixed some distcheck errors
Diffstat (limited to 'docs')
-rw-r--r--docs/reference/Makefile.am12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
index 416df77..9bf14f3 100644
--- a/docs/reference/Makefile.am
+++ b/docs/reference/Makefile.am
@@ -5,7 +5,7 @@ WEB_SERVER_PATH = /srv/cairo.freedesktop.org/www/documentation/cairomm/reference
HTML_TEMPLATE_FILES = cairomm.css cairomm-header.html
EXTRA_DIST = $(DOXYGEN_CONFIGFILE_SOURCE) \
- introduction.h $(HTML_TEMPLATE_FILES) cairomm_doxygen_tags \
+ $(HTML_TEMPLATE_FILES) cairomm_doxygen_tags \
html
index_html = html/index.html
@@ -28,7 +28,7 @@ publish: html
install-reference: $(index_html)
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)$(referencedir)
- @dir='$(<D)'; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.jpg $$dir/*.map $$dir/*.md5 $$dir/*.dot ; do \
+ @dir='$(<D)'; for p in `ls $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.jpg $$dir/*.map $$dir/*.md5 $$dir/*.dot` ; do \
f="`echo $$p | sed -e 's|^.*/||'`"; \
echo " $(INSTALL_DATA) $$p $(DESTDIR)$(referencedir)/$$f"; \
$(INSTALL_DATA) $$p $(DESTDIR)$(referencedir)/$$f; \
@@ -42,12 +42,12 @@ uninstall-reference: $(index_html)
rm -f $(DESTDIR)$(referencedir)/$$f; \
done
+DOXYGEN_REPORTS = doxygen-output.txt doxygen-warnings.txt undocumented.txt
+
doc-clean:
-rm -rf html
-rm -f cairomm_doxygen_tags
- -rm -f doxygen-output.txt
- -rm -f doxygen-warnings.txt
- -rm -f undocumented.txt
+ -rm -f $(DOXYGEN_REPORTS)
install-data-local: install-reference
@@ -57,7 +57,7 @@ all-local: $(index_html)
maintainer-clean-local: doc-clean
-DISTCLEANFILES = $(DOXYGEN_CONFIGFILE)
+DISTCLEANFILES = $(DOXYGEN_CONFIGFILE) $(DOXYGEN_REPORTS)
.PHONY: doc-clean install-reference uninstall-reference