Merged r9481:9518 on jblum/grc_reorganize into trunk. Reorganized grc source under...
[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 EXTRA_DIST = 
27
28 all-local: prep @generate_docs@
29 doc: docs            # alias
30
31 docs: prep html/index.html
32 html/index.html:
33         @DOXYGEN@
34
35 prep:
36         mkdir -p html
37         mkdir -p xml
38
39 install-data-local:
40         $(mkinstalldirs) $(DESTDIR)$(gr_docdir)
41         @for i in $(top_srcdir)/README $(top_srcdir)/README.hacking; do \
42                 echo "$(INSTALL_DATA) $$i $(DESTDIR)$(gr_docdir)"; \
43                 $(INSTALL_DATA) $$i $(DESTDIR)$(gr_docdir); \
44         done
45         cp -r html $(DESTDIR)$(gr_docdir)
46         cp -r xml $(DESTDIR)$(gr_docdir)
47
48 uninstall-local:
49         @for i in README README.hacking; do \
50                 echo "$(RM) $(DESTDIR)$(gr_docdir)/$$i;"; \
51                 $(RM) $(DESTDIR)$(gr_docdir)/$$i; \
52         done
53         $(RM) -fr $(DESTDIR)$(gr_docdir)/html
54         $(RM) -fr $(DESTDIR)$(gr_docdir)/xml
55
56 clean-local:
57         $(RM) -fr latex html man xml
58