summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in33
1 files changed, 29 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index 8c875a3c1..d04d22de2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -54,7 +54,11 @@ SSHDOBJS= sshd.o auth-rhosts.o auth-krb4.o auth-pam.o auth-passwd.o \
54 auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o servconf.o \ 54 auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o servconf.o \
55 serverloop.o bsd-login.o md5crypt.o 55 serverloop.o bsd-login.o md5crypt.o
56 56
57all: $(OBJS) $(TARGETS) manpages 57MANPAGES=scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8
58
59CONFIGFILES=sshd_config ssh_config
60
61all: $(OBJS) $(TARGETS) $(MANPAGES) $(CONFIGFILES)
58 62
59$(OBJS): config.h 63$(OBJS): config.h
60 64
@@ -89,10 +93,31 @@ clean:
89 rm -f *.o $(TARGETS) config.status config.cache config.log core \ 93 rm -f *.o $(TARGETS) config.status config.cache config.log core \
90 *.1 *.8 sshd_config ssh_config 94 *.1 *.8 sshd_config ssh_config
91 95
92manpages: 96scp.1: scp.1.in
93 $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} $(srcdir)/*.[18].in $(srcdir)/ssh*_config.in 97 $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} $(srcdir)/scp.1.in
98
99ssh-add.1: ssh-add.1.in
100 $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} ssh-add.1.in
101
102ssh-agent.1: ssh-agent.1.in
103 $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} ssh-agent.1.in
104
105ssh-keygen.1: ssh-keygen.1.in
106 $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} ssh-keygen.1.in
107
108ssh.1: ssh.1.in
109 $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} ssh.1.in
110
111sshd.8: sshd.8.in
112 $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} sshd.8.in
113
114sshd_config: sshd_config.in
115 $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} sshd_config.in
116
117ssh_config: ssh_config.in
118 $(PERL) $(FIXPATHS) -Dsysconfdir=${sysconfdir} ssh_config.in
94 119
95install: manpages all 120install: $(TARGETS)
96 $(INSTALL) -d $(bindir) 121 $(INSTALL) -d $(bindir)
97 $(INSTALL) -d $(sbindir) 122 $(INSTALL) -d $(sbindir)
98 $(INSTALL) -d $(mandir) 123 $(INSTALL) -d $(mandir)