Solve the missed local dimension bug with strides and modulo guards
[clan.git] / doc / Makefile.am
blob2eb2623451527e8ee38f914eee485230d6858320
2 #   /**------- <| --------------------------------------------------------**
3 #    **         A                     Clan                                **
4 #    **---     /.\   -----------------------------------------------------**
5 #    **   <|  [""M#                makefile.am                            **
6 #    **-   A   | #   -----------------------------------------------------**
7 #    **   /.\ [""M#         First version: 30/04/2008                     **
8 #    **- [""M# | #  U"U#U  -----------------------------------------------**
9 #         | #  | #  \ .:/
10 #         | #  | #___| #
11 # ******  | "--'     .-"  *****************************************************
12 # *     |"-"-"-"-"-#-#-##   Clan : the Chunky Loop Analyser (experimental)    *
13 # ****  |     # ## ######  ****************************************************
14 # *      \       .::::'/                                                      *
15 # *       \      ::::'/     Copyright (C) 2008 Cedric Bastoul                 *
16 # *     :8a|    # # ##                                                        *
17 # *     ::88a      ###      This is free software; you can redistribute it    *
18 # *    ::::888a  8a ##::.   and/or modify it under the terms of the GNU       *
19 # *  ::::::::888a88a[]:::   Lesser General Public License as published by     *
20 # *::8:::::::::SUNDOGa8a::. the Free Software Foundation, either version 3 of *
21 # *::::::::8::::888:Y8888::                the License, or (at your option)   *
22 # *::::':::88::::888::Y88a::::::::::::...  any later version.                 *
23 # *::'::..    .   .....   ..   ...  .                                         *
24 # * This software is distributed in the hope that it will be useful, but      *
25 # * WITHOUT ANY WARRANTY; without even the implied warranty of                *
26 # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General *
27 # * Public License  for more details.                                         *
28 # *                                                                           *
29 # * You should have received a copy of the GNU Lesser General Public          *
30 # * License along with software; if not, write to the Free Software           *
31 # * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA  *
32 # *                                                                           *
33 # * Clan, the Chunky Loop Analyser                                            *
34 # * Written by Cedric Bastoul, Cedric.Bastoul@inria.fr                        *
35 # *                                                                           *
36 # *****************************************************************************/
38 # Makefile.am (or makefile if generated) of Clan, the Chunky Loop Analyser.
39 # Makefile.am is not a makefile, you must run the 'autogen.sh' THEN the
40 # configure shellscript to generate the Makefile thanks to this file.
42 #############################################################################
44 MAINTAINERCLEANFILES = \
45         Makefile.in \
46         htmldoc.tar.gz \
47         clan.pdf \
48         clan.cp \
49         clan.fn \
50         clan.info \
51         clan.ky \
52         clan.pg \
53         clan.toc \
54         clan.tp \
55         clan.vr \
56         clan.aux \
57         clan.log \
58         clan.doc
60 clean-local:
61         -rm -rf htmldoc
63 EXTRA_DIST = \
64         htmldoc.tar.gz \
65         clan.texi \
66         clan.pdf
68 if GENERATE_DOC
69 # Unfortunately the following is not supported conditionaly
70 #info_TEXINFOS = clan.texi
71 #AM_MAKEINFOHTMLFLAGS = --no-headers --no-split
73 clan.pdf: clan.texi
74         $(TEXI2PDF) clan.texi
76 DOCDIR = htmldoc
77 DOXYFILE = Doxyfile
78 DOXYGENTOOL = @DOXYGEN@
80 # The following requires a fixed version of the Emacs 19.30 etags.
81 ETAGS_ARGS = --lang=none \
82  --regex='/^@node[ \t]+\([^,]+\)/\1/' $(srcdir)/doc/clan.texi
83 TAGS_DEPENDENCIES = clan.texi $(DOXYFILE).in
85 htmldoc.tar.gz:
86         mkdir -p $(top_srcdir)/doc/htmldoc
87         $(DOXYGENTOOL) $(DOXYFILE)
88         tar czf htmldoc.tar.gz htmldoc
89 endif