1### ##########################################################################
2### MC = < Manifold Code >
3### Copyright (C) 1994-- Michael Holst
4###
5### This program is free software; you can redistribute it and/or modify it
6### under the terms of the GNU General Public License as published by the
7### Free Software Foundation; either version 2 of the License, or (at your
8### option) any later version.
9###
10### This program is distributed in the hope that it will be useful,
11### but WITHOUT ANY WARRANTY; without even the implied warranty of
12### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13### See the GNU General Public License for more details.
14###
15### You should have received a copy of the GNU General Public License along
16### with this program; if not, write to the Free Software Foundation, Inc.,
17### 675 Mass Ave, Cambridge, MA 02139, USA.
18###
19### rcsid="$Id: Makefile.am,v 1.5 2010/08/12 05:16:31 fetk Exp $"
20### ##########################################################################
21
22## ###########################################################################
23## File:    Makefile
24##
25## Purpose: Automatically generate documentation using doxygen.
26##
27## Notes:   Both HTML and LaTeX (dvi/ps/pdf) documentation is created.
28##
29## Author:  Michael Holst
30## ###########################################################################
31
32docdir = @prefix@/doc/mc
33
34doc_DATA = mc_doc
35
36mc_doc:
37	$(doxygen_path) $(top_srcdir)/doc/doxygen/mc.dox
38
39install-docDATA:
40	mkdir -p $(docdir)
41	cp -r ../api $(docdir)/
42