summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-04-04 15:04:09 +1000
committerDamien Miller <djm@mindrot.org>2000-04-04 15:04:09 +1000
commit74a333bbe11f67c59c559e0f424d5945eb438577 (patch)
treec0621827777a570091c45f80f53ec56705af0cc8 /Makefile.in
parent9f98f06c89afad9c8f32d496c07f3bf44e7dc906 (diff)
- Generate manpages before make install not at the end of make all
- Don't seed the rng quite so often - Always reseed rng when requested
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index bb08b53b9..196cc5786 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -47,7 +47,9 @@ PATHSUBS = -D/etc/ssh_config=$(sysconfdir)/ssh_config -D/etc/known_hosts=$(sysco
47 47
48FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS) 48FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
49 49
50all: $(TARGETS) $(MANPAGES) $(CONFIGFILES) 50all: $(TARGETS) $(CONFIGFILES)
51
52manpages: $(MANPAGES)
51 53
52$(LIBOBJS): config.h 54$(LIBOBJS): config.h
53 55
@@ -95,7 +97,7 @@ catman-do:
95 >$${f%%.[18]}.0 ; \ 97 >$${f%%.[18]}.0 ; \
96 done 98 done
97 99
98install: $(TARGETS) 100install: manpages $(TARGETS)
99 $(INSTALL) -d $(DESTDIR)$(bindir) 101 $(INSTALL) -d $(DESTDIR)$(bindir)
100 $(INSTALL) -d $(DESTDIR)$(sbindir) 102 $(INSTALL) -d $(DESTDIR)$(sbindir)
101 $(INSTALL) -d $(DESTDIR)$(mandir) 103 $(INSTALL) -d $(DESTDIR)$(mandir)