1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 831 2007-03-27 13:22:09Z peter $ |
---|
4 | |
---|
5 | # Copyright (C) 2003 Jari Häkkinen |
---|
6 | # Copyright (C) 2005 Peter Johansson |
---|
7 | # Copyright (C) 2006 Jari Häkkinen, Peter Johansson |
---|
8 | # Copyright (C) 2007 Peter Johansson |
---|
9 | # |
---|
10 | # This file is part of the yat library, http://lev.thep.lu.se/trac/yat |
---|
11 | # |
---|
12 | # The yat library is free software; you can redistribute it and/or |
---|
13 | # modify it under the terms of the GNU General Public License as |
---|
14 | # published by the Free Software Foundation; either version 2 of the |
---|
15 | # License, or (at your option) any later version. |
---|
16 | # |
---|
17 | # The yat library is distributed in the hope that it will be useful, |
---|
18 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
20 | # General Public License for more details. |
---|
21 | # |
---|
22 | # You should have received a copy of the GNU General Public License |
---|
23 | # along with this program; if not, write to the Free Software |
---|
24 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
25 | # 02111-1307, USA. |
---|
26 | |
---|
27 | doc: doxygen.config doxygen-local Statistics-local |
---|
28 | |
---|
29 | clean-local: |
---|
30 | rm -rf doxygen.config html-$(VERSION) latex-$(VERSION) \ |
---|
31 | *.toc *.log *.dvi *.aux *~ |
---|
32 | |
---|
33 | doxygen-local: |
---|
34 | doxygen doxygen.config |
---|
35 | |
---|
36 | doxygen.config: doxygen.config.in |
---|
37 | @sed -e 's/PROJECT_NUMBER.*= /&$(VERSION)/g' -e 's/HTML_OUTPUT.*= /&html-$(VERSION)/g' -e 's/LATEX_OUTPUT.*= /&latex-$(VERSION)/g' doxygen.config.in > doxygen.config |
---|
38 | |
---|
39 | |
---|
40 | html-$(VERSION)/Statistics: Statistics.tex |
---|
41 | latex2html Statistics.tex |
---|
42 | @mv Statistics html-$(VERSION)/. |
---|
43 | |
---|
44 | Statistics-local: html-$(VERSION)/Statistics \ |
---|
45 | html-$(VERSION)/Statistics/Statistics.pdf |
---|
46 | |
---|
47 | Statistics.dvi: Statistics.tex |
---|
48 | @latex Statistics.tex |
---|
49 | @latex Statistics.tex |
---|
50 | |
---|
51 | Statistics.pdf: Statistics.dvi |
---|
52 | @dvipdfm Statistics.dvi |
---|
53 | |
---|
54 | html-$(VERSION)/Statistics/Statistics.pdf: Statistics.pdf |
---|
55 | @cp Statistics.pdf html-$(VERSION)/Statistics/. |
---|
56 | |
---|