855bbf436f27b3490b38fede4046e10f2cd36b5b
[debian/gnuradio] / gnuradio-core / doc / Makefile.am
1 #
2 # Copyright 2001,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 SUBDIRS = other xml-swig
25
26 docdir  = $(prefix)/share/doc/@PACKAGE@-@VERSION@
27
28 EXTRA_DIST = 
29
30 all-local: prep @generate_docs@
31 doc: docs            # alias
32
33 docs: prep html/index.html
34 html/index.html:
35         @DOXYGEN@
36
37 prep:
38         mkdir -p html
39         mkdir -p xml
40
41 install-data-local:
42         $(mkinstalldirs) $(DESTDIR)$(docdir)
43         @for i in $(top_srcdir)/README $(top_srcdir)/README.hacking; do \
44                 echo "$(INSTALL_DATA) $$i $(DESTDIR)$(docdir)"; \
45                 $(INSTALL_DATA) $$i $(DESTDIR)$(docdir); \
46         done
47         cp -r html $(DESTDIR)$(docdir)
48         cp -r xml $(DESTDIR)$(docdir)
49
50 uninstall-local:
51         @for i in README README.hacking; do \
52                 echo "$(RM) $(DESTDIR)$(docdir)/$$i;"; \
53                 $(RM) $(DESTDIR)$(docdir)/$$i; \
54         done
55         $(RM) -fr $(DESTDIR)$(docdir)/html
56         $(RM) -fr $(DESTDIR)$(docdir)/xml
57
58 clean-local:
59         $(RM) -fr latex html man xml
60