source: git/doc/Makefile.am @ 04aa63b

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since 04aa63b was 04aa63b, checked in by Olly Betts <olly@…>, 13 years ago

configure.in,doc/Makefile.am,doc/survex.1.in: Move survex man page to
section 7 (since it isn't documenting an actual command).

git-svn-id: file:///home/survex-svn/survex/trunk@3601 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 4.3 KB
Line 
1## Process this file with automake to produce Makefile.in
2
3pkgdocdir = @PKGDOCDIR@
4
5other_mans = cad3d.1 cavern.1 diffpos.1 extend.1 sorterr.1 3dtopos.1 \
6 aven.1 \
7 print.ini.5 svxedit.1
8
9manual_sources = manual.sgml cad3d.sgml cavern.sgml\
10 diffpos.sgml extend.sgml sorterr.sgml 3dtopos.sgml aven.sgml\
11 print.ini.sgml svxedit.sgml
12
13manual_alt = manual.txt manual.pdf
14
15# People can build from CVS without sgmltools v2 or v3 installed but they
16# won't be able to "make dist", which is arguably a good thing - we don't
17# want tarballs accidentally lacking the documentation.
18EXTRA_DIST = $(HTMLFILES) manual $(manual_alt)\
19 survex.7.in index.htm.in\
20 custom.dsl survex.ent\
21 caution.png note.png\
22 $(manual_sources) $(other_mans)\
23 man_3dtopos.sgml man_aven.sgml man_cad3d.sgml man_cavern.sgml\
24 man_diffpos.sgml man_extend.sgml man_sorterr.sgml\
25 man_print.ini.sgml man_svxedit.sgml news2html.pl\
26 version.ent version.ent.in
27
28NEWS.htm: ../NEWS news2html.pl
29        ./news2html.pl '@PRETTYPACKAGE@ @VERSION@' < ../NEWS > NEWS.htm
30
31OLDNEWS.htm: ../OLDNEWS news2html.pl
32        ./news2html.pl < ../OLDNEWS > OLDNEWS.htm
33
34MAINTAINERCLEANFILES = $(manual_alt) $(other_mans) NEWS.htm OLDNEWS.htm
35
36pkgdoc_DATA = @HTMLFILES@ $(manual_alt)
37
38man_MANS = survex.7 $(other_mans)
39
40aven.1: $(srcdir)/aven.sgml $(srcdir)/man_aven.sgml $(srcdir)/survex.ent
41        $(DOCBOOK_TO_MAN) $(srcdir)/man_aven.sgml > aven.tmp
42        mv aven.tmp aven.1
43
44cad3d.1: $(srcdir)/cad3d.sgml $(srcdir)/man_cad3d.sgml $(srcdir)/survex.ent
45        $(DOCBOOK_TO_MAN) $(srcdir)/man_cad3d.sgml > cad3d.tmp
46        mv cad3d.tmp cad3d.1
47
48cavern.1: $(srcdir)/cavern.sgml $(srcdir)/man_cavern.sgml $(srcdir)/survex.ent
49        $(DOCBOOK_TO_MAN) $(srcdir)/man_cavern.sgml > cavern.tmp
50        mv cavern.tmp cavern.1
51
52diffpos.1: $(srcdir)/diffpos.sgml $(srcdir)/man_diffpos.sgml $(srcdir)/survex.ent
53        $(DOCBOOK_TO_MAN) $(srcdir)/man_diffpos.sgml > diffpos.tmp
54        mv diffpos.tmp diffpos.1
55
56extend.1: $(srcdir)/extend.sgml $(srcdir)/man_extend.sgml $(srcdir)/survex.ent
57        $(DOCBOOK_TO_MAN) $(srcdir)/man_extend.sgml > extend.tmp
58        mv extend.tmp extend.1
59
60sorterr.1: $(srcdir)/sorterr.sgml $(srcdir)/man_sorterr.sgml $(srcdir)/survex.ent
61        $(DOCBOOK_TO_MAN) $(srcdir)/man_sorterr.sgml > sorterr.tmp
62        mv sorterr.tmp sorterr.1
63
643dtopos.1: $(srcdir)/3dtopos.sgml $(srcdir)/man_3dtopos.sgml $(srcdir)/survex.ent
65        $(DOCBOOK_TO_MAN) $(srcdir)/man_3dtopos.sgml > 3dtopos.tmp
66        mv 3dtopos.tmp 3dtopos.1
67
68svxedit.1: $(srcdir)/svxedit.sgml $(srcdir)/man_svxedit.sgml $(srcdir)/survex.ent
69        $(DOCBOOK_TO_MAN) $(srcdir)/man_svxedit.sgml > svxedit.tmp
70        mv svxedit.tmp svxedit.1
71
72print.ini.5: $(srcdir)/print.ini.sgml $(srcdir)/man_print.ini.sgml $(srcdir)/survex.ent
73        $(DOCBOOK_TO_MAN) $(srcdir)/man_print.ini.sgml > print.ini.tmp
74        mv print.ini.tmp print.ini.5
75
76install-data-local: manual
77        $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/manual
78        test ! -d manual -a -d "$(srcdir)/manual" && cd $(srcdir) ; \
79        for p in manual/*.htm manual/*.png ; do \
80          echo " $(INSTALL_DATA) $$p $(DESTDIR)$(pkgdocdir)/$$p"; \
81          $(INSTALL_DATA) $$p $(DESTDIR)$(pkgdocdir)/$$p; \
82        done
83
84uninstall-local:
85        test ! -d manual -a -d "$(srcdir)/manual" && cd $(srcdir) ; \
86        for p in manual/*.htm manual/*.png ; do \
87          echo " rm -f $(DESTDIR)$(pkgdocdir)/$$p"; \
88          rm -f $(DESTDIR)$(pkgdocdir)/$$p; \
89        done
90        -rmdir $(DESTDIR)$(pkgdocdir)/manual
91
92maintainer-clean-local:
93        rm -rf manual "$(srcdir)/manual"
94
95# manual, etc depend on configure.in so they get rebuilt when the
96# version number is bumped
97
98manual: manual/stampfile
99manual/stampfile: $(manual_sources) custom.dsl survex.ent ../configure.in
100        $(SGMLTOOLS) --backend=html --dsssl-spec='custom.dsl#html' manual.sgml
101        cp caution.png note.png manual
102        touch manual/stampfile
103
104manual.txt: $(manual_sources) survex.ent ../configure.in
105        $(SGMLTOOLS) --backend=txt manual.sgml
106
107manual.pdf: $(manual_sources) survex.ent ../configure.in
108        $(SGMLTOOLS) --backend=ps manual.sgml
109        ps2pdf manual.ps manual.pdf
110        rm manual.ps
111
112# The rules below aren't used by the build system - they're for "manual" use
113# (ho ho)
114
115manual.html: $(manual_sources) custom.dsl survex.ent ../configure.in
116        $(SGMLTOOLS) --backend=onehtml \
117                --dsssl-spec='custom.dsl#onehtml' manual.sgml
118
119manual.rtf: $(manual_sources) survex.ent ../configure.in
120        $(SGMLTOOLS) --backend=rtf manual.sgml
121
122manual.ps: $(manual_sources) survex.ent ../configure.in
123        $(SGMLTOOLS) --backend=ps manual.sgml
124
125CLEANFILES = usr
Note: See TracBrowser for help on using the repository browser.