1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 1259 2008-04-08 00:00:23Z 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 | |
---|
27 | .doxygen/variables: Makefile .doxygen doxygen.config |
---|
28 | @html=`$(SED) -n 's/^[ \t]*HTML_OUTPUT[ \t]*=[ \t]*//p' doxygen.config`;\ |
---|
29 | if (test -z $$html); then html="html"; fi;\ |
---|
30 | $(ECHO) "DX_HTML_OUTPUT=$$html" > $@ |
---|
31 | @lt=`$(SED) -n 's/^[ \t]*LATEX_OUTPUT[ \t]*=[ \t]*//p' doxygen.config`;\ |
---|
32 | if (test -z $$lt); then lt="latex"; fi;\ |
---|
33 | $(ECHO) "DX_LATEX_OUTPUT=$$lt" >> $@ |
---|
34 | @$(ECHO) "DX_RECURSIVE="\ |
---|
35 | "`$(SED) -n 's/^[ \t]*RECURSIVE[ \t]*=[ \t]*//p' doxygen.config`" >> $@ |
---|
36 | @$(ECHO) "DX_INPUT=\ |
---|
37 | `$(SED) -n 's/^[ \t]*INPUT[ \t]*=[ \t]*//p' doxygen.config`" >> $@ |
---|
38 | @$(ECHO) "DX_FILE_PATTERN=\ |
---|
39 | `$(SED) -n 's/^[ \t]*FILE_PATTERNS[ \t]*=[ \t]*//p' doxygen.config`" >> $@ |
---|
40 | |
---|
41 | .doxygen/deps: Makefile .doxygen .doxygen/variables FORCE |
---|
42 | @$(ECHO) $(ECHO_N) "DX_DEPENDENCIES=" > $@ |
---|
43 | @dirs='$(DX_INPUT)'; for d in $$dirs; do \ |
---|
44 | if (test -d $$d); then \ |
---|
45 | list='$(DX_FILE_PATTERN)'; for p in $$list; do \ |
---|
46 | $(ECHO) $(ECHO_N) `find $$d -name $$p|xargs` >> $@;\ |
---|
47 | $(ECHO) $(ECHO_N) " " >> $@;\ |
---|
48 | done;\ |
---|
49 | else \ |
---|
50 | $(ECHO) $(ECHO_N) "$$d " >> $@;\ |
---|
51 | fi;\ |
---|
52 | done; |
---|
53 | @$(ECHO) >> $@; |
---|
54 | @$(ECHO) "# Dummie targets" >> $@; |
---|
55 | @dirs='$(DX_INPUT)'; for d in $$dirs; do \ |
---|
56 | if (test -d $$d); then \ |
---|
57 | list='$(DX_FILE_PATTERN)'; for p in $$list; do \ |
---|
58 | files=`find $$d -name $$p`; for f in $$files; do \ |
---|
59 | $(ECHO) "$$f:" >> $@;\ |
---|
60 | done;\ |
---|
61 | done;\ |
---|
62 | else \ |
---|
63 | $(ECHO) "$$d:" >> $@;\ |
---|
64 | fi;\ |
---|
65 | done |
---|
66 | |
---|
67 | .doxygen:;$(MKDIR_P) .doxygen |
---|
68 | |
---|
69 | |
---|
70 | @am__include@ @am__quote@.doxygen/variables@am__quote@ |
---|
71 | @am__include@ @am__quote@.doxygen/deps@am__quote@ |
---|
72 | if HAVE_DOXYGEN |
---|
73 | |
---|
74 | doc: html dvi ps pdf |
---|
75 | |
---|
76 | # these are supported by automake and *-local will add target to * |
---|
77 | dvi-local: $(srcdir)/$(PACKAGE).dvi |
---|
78 | ps-local: $(srcdir)/$(PACKAGE).ps |
---|
79 | pdf-local: $(srcdir)/$(PACKAGE).pdf |
---|
80 | html-local: $(DX_HTML_OUTPUT)/index.html |
---|
81 | |
---|
82 | # this is not supported by automake - there is no target latex |
---|
83 | latex-local: $(DX_LATEX_OUTPUT)/refman.tex |
---|
84 | |
---|
85 | $(DX_HTML_OUTPUT)/index.html: Makefile doxygen.config $(DX_DEPENDENCIES) |
---|
86 | @(cat doxygen.config; $(ECHO) GENERATE_HTML = YES) | doxygen -; |
---|
87 | |
---|
88 | $(DX_LATEX_OUTPUT)/refman.tex: Makefile doxygen.config $(DX_DEPENDENCIES) |
---|
89 | @(cat doxygen.config; $(ECHO) GENERATE_LATEX = YES) | doxygen -; |
---|
90 | |
---|
91 | $(srcdir)/$(PACKAGE).dvi: $(DX_LATEX_OUTPUT)/refman.tex |
---|
92 | cd $(DX_LATEX_OUTPUT) && latex refman.tex && latex refman.tex |
---|
93 | cp $(DX_LATEX_OUTPUT)/refman.dvi $(srcdir)/$(PACKAGE).dvi |
---|
94 | |
---|
95 | $(srcdir)/$(PACKAGE).ps: $(PACKAGE).dvi |
---|
96 | cd $(DX_LATEX_OUTPUT) && dvips -o refman.ps refman.dvi; |
---|
97 | cp $(DX_LATEX_OUTPUT)/refman.ps $(srcdir)/$(PACKAGE).ps |
---|
98 | |
---|
99 | |
---|
100 | $(srcdir)/$(PACKAGE).pdf: $(DX_LATEX_OUTPUT)/refman.tex |
---|
101 | cd $(DX_LATEX_OUTPUT) && $(MAKE) pdf; |
---|
102 | cp $(DX_LATEX_OUTPUT)/refman.pdf $(srcdir)/$(PACKAGE).pdf |
---|
103 | |
---|
104 | endif |
---|
105 | |
---|
106 | install-data-hook: |
---|
107 | @$(MAKE) $(AM_MAKEFLAGS) install-dvi install-ps install-pdf install-html |
---|
108 | |
---|
109 | uninstall-hook: |
---|
110 | rm -rf $(DESTDIR)$(htmldir)/html $(DESTDIR)$(dvidir)/$(PACKAGE).dvi \ |
---|
111 | $(DESTDIR)$(psdir)/$(PACKAGE).ps $(DESTDIR)$(pdfdir)/$(PACKAGE).pdf |
---|
112 | |
---|
113 | install-html-am: |
---|
114 | if test -d $(DX_HTML_OUTPUT); then \ |
---|
115 | test -d $(DESTDIR)$(htmldir)/html || \ |
---|
116 | $(MKDIR_P) $(DESTDIR)$(htmldir)/html;\ |
---|
117 | $(INSTALL_DATA) $(DX_HTML_OUTPUT)/* $(DESTDIR)$(htmldir)/html; \ |
---|
118 | fi |
---|
119 | |
---|
120 | install-dvi-am: |
---|
121 | @if test -f "$(PACKAGE).dvi"; then \ |
---|
122 | test -d $(DESTDIR)$(dvidir) || $(MKDIR_P) $(DESTDIR)$(dvidir);\ |
---|
123 | $(INSTALL_DATA) $(srcdir)$(PACKAGE).dvi \ |
---|
124 | $(DESTDIR)$(dvidir)/$(PACKAGE).dvi; \ |
---|
125 | $(ECHO) $(INSTALL_DATA) $(PACKAGE).dvi \ |
---|
126 | $(DESTDIR)$(dvidir)/$(PACKAGE).dvi; \ |
---|
127 | fi |
---|
128 | |
---|
129 | install-ps-am: |
---|
130 | @if test -f "$(PACKAGE).ps"; then \ |
---|
131 | test -d $(DESTDIR)$(psdir) || $(MKDIR_P) $(DESTDIR)$(psdir);\ |
---|
132 | $(INSTALL_DATA) $(srcdir)$(PACKAGE).ps \ |
---|
133 | $(DESTDIR)$(psdir)/$(PACKAGE).ps; \ |
---|
134 | $(ECHO) $(INSTALL_DATA) $(PACKAGE).ps $(DESTDIR)$(psdir)/$(PACKAGE).ps;\ |
---|
135 | fi |
---|
136 | |
---|
137 | install-pdf-am: |
---|
138 | @if test -f "$(PACKAGE).pdf"; then \ |
---|
139 | test -d $(DESTDIR)$(pdfdir) || $(MKDIR_P) $(DESTDIR)$(pdfdir);\ |
---|
140 | $(INSTALL_DATA) $(srcdir)$(PACKAGE).pdf \ |
---|
141 | $(DESTDIR)$(pdfdir)/$(PACKAGE).pdf; \ |
---|
142 | $(ECHO) $(INSTALL_DATA) $(PACKAGE).pdf \ |
---|
143 | $(DESTDIR)$(pdfdir)/$(PACKAGE).pdf; \ |
---|
144 | fi |
---|
145 | |
---|
146 | |
---|
147 | mostlyclean-local: |
---|
148 | rm -f *~ |
---|
149 | |
---|
150 | clean-local: |
---|
151 | rm -rf doxygen.config |
---|
152 | |
---|
153 | FORCE: |
---|
154 | |
---|
155 | |
---|