Updated license from GPL version 2 or later to GPL version 3 or later.
[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 3, 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 gr-trellis.html : gr-trellis.xml
48         xmlto html-nochunks $(top_srcdir)/gr-trellis/doc/gr-trellis.xml
49
50 # XXX `%'-style pattern rules are a GNU make extension
51 %.xml : % make_numbered_listing.py
52         ./make_numbered_listing.py $<
53
54 install-data-local:
55         mkdir -p $(DESTDIR)$(docdir)/html
56         @for i in $(HTML_FILES); do \
57                 echo "$(INSTALL_DATA) $$i $(DESTDIR)$(docdir)/html"; \
58                 $(INSTALL_DATA) $$i $(DESTDIR)$(docdir)/html; \
59         done
60
61 uninstall-local:
62         @for i in $(HTML_FILES); do \
63                 echo "$(RM) $(DESTDIR)$(docdir)/$$i;"; \
64                 $(RM) $(DESTDIR)$(docdir)/$$i; \
65         done
66         $(RM) -fr $(DESTDIR)$(docdir)/html
67
68 clean-local:
69         $(RM) -fr $(HTML_FILES) *~