Mercurial > geeqie.yaz
annotate doc/Makefile.am @ 1753:c4d37e0fc841 default tip
installation fix
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Fri, 29 Jan 2010 19:22:50 +0900 |
parents | c08defa57068 |
children |
rev | line source |
---|---|
8 | 1 ## Process this file with automake to produce Makefile.in. |
2 | |
484 | 3 helpdir = @htmldir@ |
8 | 4 |
1735
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
5 # empty help_DATA just installs the directory |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
6 help_DATA = |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
7 |
1734
b92fc3c922ac
scripts for converting wiki documentation to docbook
nadvornik
parents:
1143
diff
changeset
|
8 EXTRA_DIST = docbook2html.sh docbook |
1735
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
9 |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
10 html/GuideIndex.html: docbook/GuideIndex.xml |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
11 rm -rf html; mkdir html && gnome-doc-tool html -o html $(srcdir)/docbook/GuideIndex.xml |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
12 |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
13 html: html/GuideIndex.html |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
14 |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
15 install-data-hook: html |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
16 cd html; for f in * ; do $(INSTALL_DATA) "$$f" "$(DESTDIR)$(helpdir)/$$f" ; done |
1753 | 17 ln -sf GuideIndex.html "$(DESTDIR)$(helpdir)/index.html" |
18 | |
1735
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
19 uninstall-hook: |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
20 rm "$(DESTDIR)$(helpdir)/"* |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
21 |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
22 clean-local: |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
23 rm -rf html |
c08defa57068
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1734
diff
changeset
|
24 |