source: trunk/doc/Makefile.am @ 1141

Last change on this file since 1141 was 1109, checked in by Peter, 15 years ago

fixes #325

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 1109 2008-02-19 21:35:41Z 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://trac.thep.lu.se/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
27doc: doxygen.config doxygen-local
28
29dvi-local:
30
31pdf-local:
32
33html-local: doxygen.config doxygen-local
34
35mostlyclean-local:
36  rm -rf *.toc *.log *.dvi *.aux *~
37
38clean-local:
39  rm -rf doxygen.config html latex Statistics.pdf
40
41doxygen-local:
42  @if $(HAVE_DOXYGEN); then \
43  doxygen doxygen.config; \
44  fi
45
46doxygen.config: doxygen.config.in
47  $(SED) -e 's/PROJECT_NUMBER.*= /&$(VERSION)/g' doxygen.config.in > doxygen.config
48
49
Note: See TracBrowser for help on using the repository browser.