]> andersk Git - openssh.git/blame - Makefile.in
- Fix for non-recognised DSA keys from Arkadiusz Miskiewicz
[openssh.git] / Makefile.in
CommitLineData
5881cd60 1prefix=@prefix@
2exec_prefix=@exec_prefix@
3bindir=@bindir@
4sbindir=@sbindir@
42b89914 5libexecdir=@libexecdir@
bb0dd7f6 6mandir=@mandir@
c54a6257 7mansubdir=@mansubdir@
af381f02 8sysconfdir=@sysconfdir@
19d9ac2a 9piddir=@piddir@
10srcdir=@srcdir@
11top_srcdir=@top_srcdir@
5881cd60 12
ff8ecdb8 13DESTDIR=
14
d2dcff5f 15VPATH=@srcdir@
16
d4f11b59 17SSH_PROGRAM=@bindir@/ssh
bc7ea646 18ASKPASS_LOCATION=@libexecdir@/ssh
19ASKPASS_PROGRAM=$(ASKPASS_LOCATION)/ssh-askpass
d4f11b59 20
5881cd60 21CC=@CC@
d423d822 22LD=@LD@
db28aeb5 23PATHS=-DETCDIR=\"$(sysconfdir)\" -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" -DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
d4f11b59 24CFLAGS=@CFLAGS@ $(PATHS) @DEFS@
17f0f4a7 25LIBS=@LIBS@
5881cd60 26AR=@AR@
27RANLIB=@RANLIB@
cf8dd513 28INSTALL=@INSTALL@
a0f84251 29PERL=@PERL@
6cfb695b 30LDFLAGS=-L. @LDFLAGS@
5881cd60 31
d3083fbd 32INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
33
48e671d5 34TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
35
3dc1102e 36LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dispatch.o dsa.o fingerprint.o hmac.o hostfile.o key.o kex.o log.o match.o mpaux.o nchan.o packet.o radix.o entropy.o readpass.o rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o
37
38LIBOPENBSD_COMPAT_OBJS=bsd-base64.o bsd-bindresvport.o bsd-daemon.o bsd-misc.o bsd-mktemp.o bsd-rresvport.o bsd-setenv.o bsd-snprintf.o bsd-strlcat.o bsd-strlcpy.o fake-getaddrinfo.o fake-getnameinfo.o
6cfb695b 39
a306f2dd 40SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
a5c9cd31 41
a306f2dd 42SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-rhosts.o auth-krb4.o auth-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o servconf.o serverloop.o bsd-login.o md5crypt.o session.o
a5c9cd31 43
c54a6257 44TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8
45CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0
46MANPAGES = @MANTYPE@
a1ec4d79 47
48CONFIGFILES=sshd_config ssh_config
49
7e31dc81 50PATHSUBS = -D/etc/ssh_config=$(sysconfdir)/ssh_config -D/etc/known_hosts=$(sysconfdir)/ssh_known_hosts -D/etc/sshd_config=$(sysconfdir)/sshd_config -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv -D/etc/ssh_host_key=$(sysconfdir)/ssh_host_key -D/var/run/sshd.pid=$(piddir)/sshd.pid
5f4fdfae 51
52FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
53
6c081128 54all: $(TARGETS) $(CONFIGFILES)
55
56manpages: $(MANPAGES)
6cfb695b 57
3dc1102e 58$(LIBSSH_OBJS): config.h
59
60$(LIBOPENBSD_COMPAT_OBJS): config.h
61
62libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS)
63 $(AR) rv $@ $(LIBOPENBSD_COMPAT_OBJS)
64 $(RANLIB) $@
f74efc8d 65
3dc1102e 66libssh.a: $(LIBSSH_OBJS)
67 $(AR) rv $@ $(LIBSSH_OBJS)
5881cd60 68 $(RANLIB) $@
69
3dc1102e 70ssh: libopenbsd-compat.a libssh.a $(SSHOBJS)
71 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 72
3dc1102e 73sshd: libssh.a libopenbsd-compat.a $(SSHDOBJS)
74 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 75
3dc1102e 76scp: libopenbsd-compat.a libssh.a scp.o
77 $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 78
3dc1102e 79ssh-add: libopenbsd-compat.a libssh.a ssh-add.o log-client.o
80 $(LD) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 81
3dc1102e 82ssh-agent: libopenbsd-compat.a libssh.a ssh-agent.o log-client.o
83 $(LD) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 84
3dc1102e 85ssh-keygen: libopenbsd-compat.a libssh.a ssh-keygen.o log-client.o
86 $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 87
5f4fdfae 88$(MANPAGES) $(CONFIGFILES)::
89 $(FIXPATHSCMD) $(srcdir)/$@
e1a9c08d 90
48e671d5 91clean:
92 rm -f *.o *.a $(TARGETS) config.status config.cache config.log
d3083fbd 93 rm -f *.out ssh_prng_cmds core
48e671d5 94
95distclean: clean
96 rm -f Makefile config.h core *~
97
98mrproper: distclean
99
100veryclean: distclean
c54a6257 101 rm -f configure config.h.in *.0
102
103catman-do:
104 @for f in $(TROFFMAN) ; do \
105 echo "$$f -> $${f%%.[18]}.0" ; \
106 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
107 >$${f%%.[18]}.0 ; \
108 done
48e671d5 109
6c081128 110install: manpages $(TARGETS)
ff8ecdb8 111 $(INSTALL) -d $(DESTDIR)$(bindir)
112 $(INSTALL) -d $(DESTDIR)$(sbindir)
113 $(INSTALL) -d $(DESTDIR)$(mandir)
114 $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)1
115 $(INSTALL) -d $(DESTDIR)$(mandir)/$(mansubdir)8
05e84bdf 116 $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh
ff8ecdb8 117 $(INSTALL) -s scp $(DESTDIR)$(bindir)/scp
118 $(INSTALL) -s ssh-add $(DESTDIR)$(bindir)/ssh-add
119 $(INSTALL) -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
120 $(INSTALL) -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
121 $(INSTALL) -s sshd $(DESTDIR)$(sbindir)/sshd
122 $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
123 $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
124 $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
125 $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
126 $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
127 $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
128 -rm -f $(DESTDIR)$(bindir)/slogin
129 ln -s ssh $(DESTDIR)$(bindir)/slogin
130 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
131 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
045672f9 132
ff8ecdb8 133 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
134 $(INSTALL) -d $(DESTDIR)$(sysconfdir); \
135 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
136 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
af381f02 137 fi
d3083fbd 138 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
139 $(INSTALL) -m 644 ssh_prng_cmds $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
140 fi
af381f02 141
6bf4d066 142host-key: ssh-keygen
3d1a1654 143 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N ""
144 ./ssh-keygen -d -f $(sysconfdir)/ssh_host_dsa_key -N ""
6bf4d066 145
8946db53 146uninstallall: uninstall
ff8ecdb8 147 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
148 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
d3083fbd 149 -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
ff8ecdb8 150 -rmdir $(DESTDIR)$(sysconfdir)
151 -rmdir $(DESTDIR)$(bindir)
152 -rmdir $(DESTDIR)$(sbindir)
153 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
154 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
155 -rmdir $(DESTDIR)$(mandir)
156 -rmdir $(DESTDIR)$(libexecdir)
8946db53 157
158uninstall:
ff8ecdb8 159 -rm -f $(DESTDIR)$(bindir)/ssh
160 -rm -f $(DESTDIR)$(bindir)/scp
161 -rm -f $(DESTDIR)$(bindir)/ssh-add
162 -rm -f $(DESTDIR)$(bindir)/ssh-agent
163 -rm -f $(DESTDIR)$(bindir)/ssh-keygen
164 -rm -f $(DESTDIR)$(sbindir)/sshd
165 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
166 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
167 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
168 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
169 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
170 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
171 -rm -f $(DESTDIR)$(bindir)/slogin
172 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
173 -rm -f $(DESTDIR)${ASKPASS_PROGRAM}
174 -rmdir $(DESTDIR)$(libexecdir)/ssh ;
This page took 0.101824 seconds and 5 git commands to generate.