source: trunk/doc/Makefile.am @ 1257

Last change on this file since 1257 was 1257, checked in by Peter, 16 years ago

adding support for DESTDIR

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 1257 2008-04-04 21:06:42Z 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 2008 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
27if HAVE_DOXYGEN
28
29doc: html dvi ps pdf
30
31# these are supported by automake and *-local will add target to *
32dvi-local: $(PACKAGE).dvi
33ps-local: $(PACKAGE).ps
34pdf-local: $(PACKAGE).pdf
35
36html-local: doxygen.config
37  @(cat doxygen.config; $(ECHO) GENERATE_HTML = YES) | doxygen -;
38
39# this is not supported by automake - there is no target latex
40latex-local: doxygen.config
41  @(cat doxygen.config; $(ECHO) GENERATE_LATEX = YES) | doxygen -;
42
43$(PACKAGE).dvi: latex-local
44  cd latex && latex refman.tex && latex refman.tex
45  cp latex/refman.dvi $(PACKAGE).dvi
46
47$(PACKAGE).ps: $(PACKAGE).dvi
48  dvips latex/refman.dvi -o $(PACKAGE).ps
49
50
51$(PACKAGE).pdf: latex-local
52  cd latex && $(MAKE) pdf;
53  cp latex/refman.pdf $(PACKAGE).pdf
54
55endif
56
57install-data-hook:
58  @$(MAKE) $(AM_MAKEFLAGS) install-dvi install-ps install-pdf install-html
59
60uninstall-hook:
61  rm -rf $(DESTDIR)$(htmldir)/html $(DESTDIR)$(dvidir)/$(PACKAGE).dvi \
62  $(DESTDIR)$(psdir)/$(PACKAGE).ps $(DESTDIR)$(pdfdir)/$(PACKAGE).pdf
63
64install-html-am:
65  if test -d "html"; then \
66  test -d $(DESTDIR)$(htmldir)/html || \
67    $(MKDIR_P) $(DESTDIR)$(htmldir)/html;\
68  $(INSTALL_DATA) html/* $(DESTDIR)$(htmldir)/html; \
69  fi
70
71install-dvi-am:
72  @if test -f "$(PACKAGE).dvi"; then \
73  test -d $(DESTDIR)$(dvidir) || $(MKDIR_P) $(DESTDIR)$(dvidir);\
74  $(INSTALL_DATA) $(PACKAGE).dvi $(DESTDIR)$(dvidir)/$(PACKAGE).dvi; \
75  $(ECHO) $(INSTALL_DATA) $(PACKAGE).dvi \
76  $(DESTDIR)$(dvidir)/$(PACKAGE).dvi; \
77  fi
78
79install-ps-am:
80  @if test -f "$(PACKAGE).ps"; then \
81  test -d $(DESTDIR)$(psdir) || $(MKDIR_P) $(DESTDIR)$(psdir);\
82  $(INSTALL_DATA) $(PACKAGE).ps $(DESTDIR)$(psdir)/$(PACKAGE).ps; \
83  $(ECHO) $(INSTALL_DATA) $(PACKAGE).ps $(DESTDIR)$(psdir)/$(PACKAGE).ps;\
84  fi
85
86install-pdf-am:
87  @if test -f "$(PACKAGE).pdf"; then \
88  test -d $(DESTDIR)$(pdfdir) || $(MKDIR_P) $(DESTDIR)$(pdfdir);\
89  $(INSTALL_DATA) $(PACKAGE).pdf $(DESTDIR)$(pdfdir)/$(PACKAGE).pdf; \
90  $(ECHO) $(INSTALL_DATA) $(PACKAGE).pdf $(DESTDIR)$(pdfdir)/$(PACKAGE).pdf; \
91  fi
92
93
94mostlyclean-local:
95  rm -f $(PACKAGE).dvi *~
96
97clean-local:
98  rm -rf doxygen.config html latex $(PACKAGE).dvi \
99  $(PACKAGE).ps $(PACKAGE).pdf
100
101FORCE:
Note: See TracBrowser for help on using the repository browser.