Created SILC Crypto Toolkit git repository.
[crypto.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 crypto
22         mkdir crypto
23         cp crypto.in/* crypto/
24         cd crypto && robodoc --rc crypto.rc
25
26 toolkit-ref-pdf:
27
28 doc-install:
29         -mkdir -p $(docdir)
30         -mkdir -p $(docdir)/crypto
31         -$(INSTALL_DATA) $(top_srcdir)/doc/CodingStyle $(docdir)/
32         -$(INSTALL_DATA) $(top_srcdir)/doc/crypto/* $(docdir)/crypto
33
34 install-data-hook:      \
35         doc-install
36
37 clean:
38         rm -rf crypto
39
40 EXTRA_DIST = crypto CodingStyle
41
42 include $(top_srcdir)/Makefile.defines.in