chiark / gitweb /
Loosen playlist command rights.
[disorder] / doc / Makefile.am
... / ...
CommitLineData
1#
2# This file is part of DisOrder.
3# Copyright (C) 2004-2008 Richard Kettlewell
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18# USA
19#
20
21noinst_DATA=$(HTMLMAN)
22pkgdata_DATA=$(TMPLMAN)
23man_MANS=disorderd.8 disorder.1 disorder.3 disorder_config.5 disorder-dump.8 \
24 disorder_protocol.5 disorder-deadlock.8 \
25 disorder-rescan.8 disobedience.1 disorderfm.1 disorder-speaker.8 \
26 disorder-playrtp.1 disorder-normalize.8 disorder-decode.8 \
27 disorder-stats.8 disorder-dbupgrade.8 disorder_templates.5 \
28 disorder_actions.5 disorder_options.5 disorder.cgi.8 \
29 disorder_preferences.5
30noinst_MANS=tkdisorder.1
31
32SEDFILES=disorder.1 disorderd.8 disorder_config.5 \
33 disorder-dump.8 disorder_protocol.5 disorder-deadlock.8 \
34 disorder-rescan.8 disobedience.1 disorderfm.1 disorder-playrtp.1 \
35 disorder-decode.8 disorder-stats.8 disorder-dbupgrade.8 \
36 disorder_options.5 disorder.cgi.8 disorder_templates.5 \
37 disorder_actions.5 disorder_preferences.5
38
39include ${top_srcdir}/scripts/sedfiles.make
40
41HTMLMAN=$(foreach man,$(man_MANS),$(man).html)
42$(HTMLMAN) : %.html : % $(top_srcdir)/scripts/htmlman
43 rm -f $@.new
44 $(top_srcdir)/scripts/htmlman $< >$@.new
45 chmod 444 $@.new
46 mv -f $@.new $@
47
48TMPLMAN=$(foreach man,$(man_MANS),$(man).tmpl)
49$(TMPLMAN) : %.tmpl : % $(top_srcdir)/scripts/htmlman
50 rm -f $@.new
51 $(top_srcdir)/scripts/htmlman -stdhead $< >$@.new
52 chmod 444 $@.new
53 mv -f $@.new $@
54
55disorder_templates.5.in: disorder_templates.5.head disorder_templates.5.tail \
56 $(top_srcdir)/lib/macros-builtin.c \
57 $(top_srcdir)/cgi/macros-disorder.c \
58 $(top_srcdir)/scripts/macro-docs
59 rm -f disorder_templates.5.new
60 cat ${srcdir}/disorder_templates.5.head >> disorder_templates.5.new
61 $(top_srcdir)/scripts/macro-docs >> disorder_templates.5.new \
62 $(top_srcdir)/lib/macros-builtin.c \
63 $(top_srcdir)/cgi/macros-disorder.c
64 cat ${srcdir}/disorder_templates.5.tail >> disorder_templates.5.new
65 mv disorder_templates.5.new disorder_templates.5.in
66
67disorder_actions.5.in: disorder_actions.5.head disorder_actions.5.tail \
68 $(top_srcdir)/lib/macros-builtin.c \
69 $(top_srcdir)/cgi/actions.c \
70 $(top_srcdir)/scripts/macro-docs
71 rm -f disorder_actions.5.new
72 cat ${srcdir}/disorder_actions.5.head >> disorder_actions.5.new
73 $(top_srcdir)/scripts/macro-docs >> disorder_actions.5.new \
74 $(top_srcdir)/cgi/actions.c
75 cat ${srcdir}/disorder_actions.5.tail >> disorder_actions.5.new
76 mv disorder_actions.5.new disorder_actions.5.in
77
78if GROG
79check: $(man_MANS)
80 @set -e; for m in $(man_MANS); do \
81 echo \`$(GROG) $$m\` -Tutf8 -wall \>/dev/null ;\
82 echo `$(GROG) $$m` -Tutf8 -wall >/dev/null ;\
83 done
84endif
85
86EXTRA_DIST=disorderd.8.in disorder.1.in disorder_config.5.in \
87 disorder.3 disorder-dump.8.in disorder_protocol.5.in \
88 tkdisorder.1 disorder-deadlock.8.in disorder-rescan.8.in \
89 disobedience.1.in disorderfm.1.in disorder-speaker.8 \
90 disorder-playrtp.1.in disorder-decode.8.in disorder-normalize.8 \
91 disorder-stats.8.in disorder-dbupgrade.8.in \
92 disorder_actions.5.head disorder_templates.5.head \
93 disorder_actions.5.tail disorder_templates.5.tail \
94 disorder_options.5.in disorder.cgi.8.in disorder_preferences.5.in
95
96CLEANFILES=$(SEDFILES) $(HTMLMAN) $(TMPLMAN) \
97 disorder_actions.5.in disorder_templates.5.in
98
99export GNUSED