blob: 99f9b027c4bd8c5748a241e4b2e3199dd1983696 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
--- Makefile.in.orig Fri Dec 21 02:09:25 2001
+++ Makefile.in Fri Dec 21 02:11:22 2001
@@ -151,9 +151,9 @@
AUTOMAKE_OPTIONS = 1.0 no-dependencies foreign
-COMMONDIRS = lib irssi silc silcd doc includes
-SUBDIRS = lib silcd doc includes
-DIST_SUBDIRS = lib silcd doc includes
+COMMONDIRS = lib irssi silcd includes
+SUBDIRS = lib silcd includes
+DIST_SUBDIRS = lib silcd includes
#
# INCLUDE defines
@@ -529,9 +529,6 @@
install-dirs:
-mkdir -p $(etcdir)
- -mkdir -p $(modulesdir)
- -mkdir -p $(helpdir)
- -mkdir -p $(docdir)
-mkdir -p $(logsdir)
generate-server-key:
@@ -561,18 +558,13 @@
$(INSTALL_DATA) $(srcdir)/doc/examples/cell* $(docdir)/examples/
etc-install:
- -@if test '!' -f $(etcdir)/silcd.conf ; then \
+ -@if test '!' -f $(etcdir)/silcd.conf.sample ; then \
$(INSTALL_DATA) $(srcdir)/doc/example_silcd.conf \
- $(etcdir)/silcd.conf; \
- chmod go= $(etcdir)/silcd.conf; \
- fi
- -@if test '!' -f $(etcdir)/silc.conf ; then \
- $(INSTALL_DATA) $(srcdir)/doc/example_silc.conf \
- $(etcdir)/silc.conf; \
+ $(etcdir)/silcd.conf.sample; \
fi
-@SILC_DIST_CLIENT_TRUE@install-data-hook: install-dirs sim-install doc-install etc-install
-@SILC_DIST_CLIENT_FALSE@install-data-hook: install-dirs generate-server-key sim-install doc-install examples-install etc-install
+@SILC_DIST_CLIENT_TRUE@install-data-hook: install-dirs etc-install
+@SILC_DIST_CLIENT_FALSE@install-data-hook: install-dirs etc-install
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
|