Imported Upstream version 3.0.2
[debian/gnuradio] / gr-trellis / doc / Makefile.am
1 #
2 # Copyright 2004,2005 Free Software Foundation, Inc.
3
4 # This file is part of GNU Radio
5
6 # GNU Radio is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10
11 # GNU Radio is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Radio; see the file COPYING.  If not, write to
18 # the Free Software Foundation, Inc., 51 Franklin Street,
19 # Boston, MA 02110-1301, USA.
20
21
22 include $(top_srcdir)/Makefile.common
23
24 docdir=$(prefix)/share/doc/@PACKAGE@-@VERSION@
25
26 HTML_FILES =
27
28 if HAS_XMLTO
29 HTML_FILES += \
30     gr-trellis.html
31 endif
32
33 all: $(HTML_FILES)
34
35 EXTRA_DIST = \
36     gr-trellis.xml \
37     make_numbered_listing.py \
38     test_tcm.py \
39     test_tcm.py.xml \
40     test_viterbi_equalization1.py \
41     test_viterbi_equalization1.py.xml
42
43 BUILT_XML_FILES =                       
44
45 # ----------------------------------------------------------------
46
47 %.html : %.xml
48         xmlto html-nochunks $<
49
50 %.xml : % make_numbered_listing.py
51         ./make_numbered_listing.py $<
52
53 install-data-local:
54         mkdir -p $(DESTDIR)$(docdir)/html
55         @for i in $(HTML_FILES); do \
56                 echo "$(INSTALL_DATA) $$i $(DESTDIR)$(docdir)/html"; \
57                 $(INSTALL_DATA) $$i $(DESTDIR)$(docdir)/html; \
58         done
59
60 uninstall-local:
61         @for i in $(HTML_FILES); do \
62                 echo "$(RM) $(DESTDIR)$(docdir)/$$i;"; \
63                 $(RM) $(DESTDIR)$(docdir)/$$i; \
64         done
65         $(RM) -fr $(DESTDIR)$(docdir)/html
66
67 clean-local:
68         $(RM) -fr $(HTML_FILES) *~