Mac OS X >= 10.7 support
[runtime.git] / doc / Makefile.ad
1 #
2 #  Makefile.ad
3 #
4 #  Author: Pekka Riikonen <priikone@silcnet.org>
5 #
6 #  Copyright (C) 2000 - 2008 Pekka Riikonen
7 #
8 #  This program is free software; you can redistribute it and/or modify
9 #  it under the terms of the GNU General Public License as published by
10 #  the Free Software Foundation; version 2 of the License.
11 #
12 #  This program is distributed in the hope that it will be useful,
13 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #  GNU General Public License for more details.
16 #
17
18 AUTOMAKE_OPTIONS = 1.0 no-dependencies foreign
19
20 toolkit-ref-html:
21         rm -rf runtime
22         mkdir runtime
23         cp runtime.in/* runtime/
24         cd runtime && robodoc --rc runtime.rc
25
26 toolkit-ref-pdf:
27
28 doc-install:
29         -mkdir -p $(docdir)
30         -mkdir -p $(docdir)/runtime
31         -$(INSTALL_DATA) $(top_srcdir)/doc/CodingStyle $(docdir)/
32         -$(INSTALL_DATA) $(top_srcdir)/doc/runtime/* $(docdir)/runtime
33
34 install-data-hook:      \
35         doc-install
36
37 clean:
38         rm -rf runtime
39
40 EXTRA_DIST = runtime CodingStyle
41
42 include $(top_srcdir)/Makefile.defines.in