[5] | 1 | ## Process this file with automake to produce Makefile.in |
---|
| 2 | ## |
---|
| 3 | ## $Id: Makefile.am 1109 2008-02-19 21:35:41Z peter $ |
---|
| 4 | |
---|
[831] | 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 |
---|
[675] | 9 | # |
---|
[1000] | 10 | # This file is part of the yat library, http://trac.thep.lu.se/yat |
---|
[675] | 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 | |
---|
[1109] | 27 | doc: doxygen.config doxygen-local |
---|
[799] | 28 | |
---|
[1109] | 29 | dvi-local: |
---|
[957] | 30 | |
---|
[1109] | 31 | pdf-local: |
---|
[957] | 32 | |
---|
[1109] | 33 | html-local: doxygen.config doxygen-local |
---|
[957] | 34 | |
---|
| 35 | mostlyclean-local: |
---|
| 36 | rm -rf *.toc *.log *.dvi *.aux *~ |
---|
| 37 | |
---|
[5] | 38 | clean-local: |
---|
[957] | 39 | rm -rf doxygen.config html latex Statistics.pdf |
---|
[5] | 40 | |
---|
[800] | 41 | doxygen-local: |
---|
[957] | 42 | @if $(HAVE_DOXYGEN); then \ |
---|
| 43 | doxygen doxygen.config; \ |
---|
| 44 | fi |
---|
[489] | 45 | |
---|
[967] | 46 | doxygen.config: doxygen.config.in |
---|
| 47 | $(SED) -e 's/PROJECT_NUMBER.*= /&$(VERSION)/g' doxygen.config.in > doxygen.config |
---|
[799] | 48 | |
---|
[850] | 49 | |
---|