Mercurial > geeqie
annotate doc/Makefile.am @ 1790:48cc32388aeb
Update dutch translation. Work in progress.
Patch by Marcel Pol.
author | zas_ |
---|---|
date | Wed, 13 Jan 2010 19:49:39 +0000 |
parents | a7f7b9c0050c |
children | a210f58165ed |
rev | line source |
---|---|
8 | 1 ## Process this file with automake to produce Makefile.in. |
2 | |
484 | 3 helpdir = @htmldir@ |
8 | 4 |
1774
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
5 # empty help_DATA just installs the directory |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
6 help_DATA = |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
7 |
1773
2ae81598b254
scripts for converting wiki documentation to docbook
nadvornik
parents:
1143
diff
changeset
|
8 EXTRA_DIST = docbook2html.sh docbook |
1774
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
9 |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
10 html/GuideIndex.html: docbook/GuideIndex.xml |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
11 rm -rf html; mkdir html && gnome-doc-tool html -o html $(srcdir)/docbook/GuideIndex.xml |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
12 |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
13 html: html/GuideIndex.html |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
14 |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
15 install-data-hook: html |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
16 cd html; for f in * ; do $(INSTALL_DATA) "$$f" "$(DESTDIR)$(helpdir)/$$f" ; done |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
17 ln -s GuideIndex.html "$(DESTDIR)$(helpdir)/index.html" |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
18 |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
19 uninstall-hook: |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
20 rm "$(DESTDIR)$(helpdir)/"* |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
21 |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
22 clean-local: |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
23 rm -rf html |
a7f7b9c0050c
build documentation with gnome-doc-tool in makefile
nadvornik
parents:
1773
diff
changeset
|
24 |