updates.
[silc.git] / Makefile.am
1 #
2 #  Makefile.am
3 #
4 #  Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
5 #
6 #  Copyright (C) 2000 - 2001 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; either version 2 of the License, or
11 #  (at your option) any later version.
12 #
13 #  This program is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #  GNU General Public License for more details.
17 #
18
19 AUTOMAKE_OPTIONS = 1.0 no-dependencies foreign
20
21 SUBDIRS = lib silcd silc doc includes
22
23 dist-bzip: distdir
24         -chmod -R a+r $(distdir)
25         -$(TAR) chof $(distdir).tar $(distdir)
26         -bzip2 $(distdir).tar
27         -rm -rf $(distdir)
28
29 EXTRA_DIST = CHANGES CREDITS
30
31 #
32 # Installing of SILC into the system
33 #
34
35 etcdir = @ETCDIR@
36 modulesdir = $(prefix)/@MODULESDIR@
37 helpdir = $(prefix)/@HELPDIR@
38 docdir = $(prefix)/@DOCDIR@
39 logsdir = $(prefix)/@LOGSDIR@
40
41 install-dirs:
42         -mkdir -p $(etcdir)
43         -mkdir -p $(modulesdir)
44         -mkdir -p $(helpdir)
45         -mkdir -p $(docdir)
46         -mkdir -p $(logsdir)
47
48 generate-server-key:
49         -$(sbindir)/silcd -C $(etcdir)
50
51 sim-install:
52         -cp -fR $(srcdir)/lib/silcsim/modules/*.so $(modulesdir)/
53
54 doc-install:
55         $(INSTALL_DATA) $(srcdir)/doc/CodingStyle $(docdir)/
56         $(INSTALL_DATA) $(srcdir)/doc/FAQ $(docdir)/
57         $(INSTALL_DATA) $(srcdir)/doc/example* $(docdir)/
58         $(INSTALL_DATA) $(srcdir)/doc/*.txt $(docdir)/
59         $(INSTALL_DATA) $(srcdir)/COPYING $(docdir)/
60         $(INSTALL_DATA) $(srcdir)/CHANGES $(docdir)/
61         $(INSTALL_DATA) $(srcdir)/CREDITS $(docdir)/
62         $(INSTALL_DATA) $(srcdir)/README $(docdir)/
63         $(INSTALL_DATA) $(srcdir)/INSTALL $(docdir)/
64         $(INSTALL_DATA) $(srcdir)/TODO $(docdir)/
65
66 etc-install:
67         -@if test '!' -f $(etcdir)/silcd.conf ; then \
68           $(INSTALL_DATA) $(srcdir)/doc/example_silcd.conf \
69           $(etcdir)/silcd.conf; \
70           chmod go= $(etcdir)/silcd.conf; \
71         fi
72         -@if test '!' -f $(etcdir)/silc.conf ; then \
73           $(INSTALL_DATA) $(srcdir)/doc/example_silc.conf \
74           $(etcdir)/silc.conf; \
75         fi
76
77 install-data-hook: install-dirs generate-server-key sim-install doc-install etc-install