new distributions system.
[silc.git] / Makefile.am.pre
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 silc silcd doc includes
22 DIST_SUBDIRS = SILC_DISTRIBUTION_SUBDIRS
23
24 dist-bzip: distdir
25         -chmod -R a+r $(distdir)
26         -$(TAR) chof $(distdir).tar $(distdir)
27         -bzip2 $(distdir).tar
28         -rm -rf $(distdir)
29
30 EXTRA_DIST = CHANGES CREDITS
31
32 #
33 # Installing of SILC into the system
34 #
35
36 etcdir = @ETCDIR@
37 modulesdir = $(prefix)/@MODULESDIR@
38 helpdir = $(prefix)/@HELPDIR@
39 docdir = $(prefix)/@DOCDIR@
40 logsdir = $(prefix)/@LOGSDIR@
41
42 install-dirs:
43         -mkdir -p $(etcdir)
44         -mkdir -p $(modulesdir)
45         -mkdir -p $(helpdir)
46         -mkdir -p $(docdir)
47         -mkdir -p $(logsdir)
48
49 generate-server-key:
50         -$(sbindir)/silcd -C $(etcdir)
51
52 sim-install:
53         -cp -fR $(srcdir)/lib/silcsim/modules/*.so $(modulesdir)/
54
55 doc-install:
56         $(INSTALL_DATA) $(srcdir)/doc/CodingStyle $(docdir)/
57         $(INSTALL_DATA) $(srcdir)/doc/FAQ $(docdir)/
58         $(INSTALL_DATA) $(srcdir)/doc/example* $(docdir)/
59         $(INSTALL_DATA) $(srcdir)/doc/*.txt $(docdir)/
60         $(INSTALL_DATA) $(srcdir)/COPYING $(docdir)/
61         $(INSTALL_DATA) $(srcdir)/CHANGES $(docdir)/
62         $(INSTALL_DATA) $(srcdir)/CREDITS $(docdir)/
63         $(INSTALL_DATA) $(srcdir)/README $(docdir)/
64         $(INSTALL_DATA) $(srcdir)/INSTALL $(docdir)/
65         $(INSTALL_DATA) $(srcdir)/TODO $(docdir)/
66
67 etc-install:
68         -@if test '!' -f $(etcdir)/silcd.conf ; then \
69           $(INSTALL_DATA) $(srcdir)/doc/example_silcd.conf \
70           $(etcdir)/silcd.conf; \
71           chmod go= $(etcdir)/silcd.conf; \
72         fi
73         -@if test '!' -f $(etcdir)/silc.conf ; then \
74           $(INSTALL_DATA) $(srcdir)/doc/example_silc.conf \
75           $(etcdir)/silc.conf; \
76         fi
77
78 install-data-hook: install-dirs generate-server-key sim-install doc-install etc-install