]> andersk Git - openssh.git/blame - Makefile.in
typo
[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@
ad85db64 30ENT=@ENT@
6cfb695b 31LDFLAGS=-L. @LDFLAGS@
5881cd60 32
d3083fbd 33INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
34
48e671d5 35TARGETS=ssh sshd ssh-add ssh-keygen ssh-agent scp $(EXTRA_TARGETS)
36
0e73cc53 37LIBSSH_OBJS=atomicio.o authfd.o authfile.o aux.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
3dc1102e 38
729bfe59 39LIBOPENBSD_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 next-posix.o
6cfb695b 40
a306f2dd 41SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
a5c9cd31 42
38c295d6 43SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-rhosts.o auth-options.o auth-krb4.o auth-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o loginrec.o servconf.o serverloop.o md5crypt.o session.o
a5c9cd31 44
c54a6257 45TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 sshd.8
46CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh.0 sshd.0
47MANPAGES = @MANTYPE@
a1ec4d79 48
49CONFIGFILES=sshd_config ssh_config
50
7e31dc81 51PATHSUBS = -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 52
53FIXPATHSCMD = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
54
6c081128 55all: $(TARGETS) $(CONFIGFILES)
56
57manpages: $(MANPAGES)
6cfb695b 58
3dc1102e 59$(LIBSSH_OBJS): config.h
60
61$(LIBOPENBSD_COMPAT_OBJS): config.h
62
63libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS)
64 $(AR) rv $@ $(LIBOPENBSD_COMPAT_OBJS)
65 $(RANLIB) $@
f74efc8d 66
3dc1102e 67libssh.a: $(LIBSSH_OBJS)
68 $(AR) rv $@ $(LIBSSH_OBJS)
5881cd60 69 $(RANLIB) $@
70
3dc1102e 71ssh: libopenbsd-compat.a libssh.a $(SSHOBJS)
72 $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 73
3dc1102e 74sshd: libssh.a libopenbsd-compat.a $(SSHDOBJS)
75 $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 76
3dc1102e 77scp: libopenbsd-compat.a libssh.a scp.o
78 $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 79
3dc1102e 80ssh-add: libopenbsd-compat.a libssh.a ssh-add.o log-client.o
81 $(LD) -o $@ ssh-add.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 82
3dc1102e 83ssh-agent: libopenbsd-compat.a libssh.a ssh-agent.o log-client.o
84 $(LD) -o $@ ssh-agent.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 85
3dc1102e 86ssh-keygen: libopenbsd-compat.a libssh.a ssh-keygen.o log-client.o
87 $(LD) -o $@ ssh-keygen.o log-client.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
5881cd60 88
1d7b9b20 89# test driver for the loginrec code - not built by default
90logintest: logintest.o libopenbsd-compat.a libssh.a log-client.o loginrec.o
91 $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh log-client.o $(LIBS)
92
5f4fdfae 93$(MANPAGES) $(CONFIGFILES)::
94 $(FIXPATHSCMD) $(srcdir)/$@
e1a9c08d 95
48e671d5 96clean:
1d7b9b20 97 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
c04f75f1 98 rm -f *.out core
48e671d5 99
100distclean: clean
c04f75f1 101 rm -f Makefile config.h config.status ssh_prng_cmds *~
48e671d5 102
103mrproper: distclean
104
105veryclean: distclean
c54a6257 106 rm -f configure config.h.in *.0
107
108catman-do:
109 @for f in $(TROFFMAN) ; do \
110 echo "$$f -> $${f%%.[18]}.0" ; \
111 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
112 >$${f%%.[18]}.0 ; \
113 done
48e671d5 114
6c081128 115install: manpages $(TARGETS)
fc1e8bf4 116 ./mkinstalldirs $(DESTDIR)$(bindir)
117 ./mkinstalldirs $(DESTDIR)$(sbindir)
118 ./mkinstalldirs $(DESTDIR)$(mandir)
119 ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
120 ./mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
05e84bdf 121 $(INSTALL) -m 4755 -s ssh $(DESTDIR)$(bindir)/ssh
ff8ecdb8 122 $(INSTALL) -s scp $(DESTDIR)$(bindir)/scp
123 $(INSTALL) -s ssh-add $(DESTDIR)$(bindir)/ssh-add
124 $(INSTALL) -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
125 $(INSTALL) -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
126 $(INSTALL) -s sshd $(DESTDIR)$(sbindir)/sshd
127 $(INSTALL) -m 644 ssh.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
128 $(INSTALL) -m 644 scp.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
129 $(INSTALL) -m 644 ssh-add.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
130 $(INSTALL) -m 644 ssh-agent.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
131 $(INSTALL) -m 644 ssh-keygen.[01].out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
132 $(INSTALL) -m 644 sshd.[08].out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
133 -rm -f $(DESTDIR)$(bindir)/slogin
134 ln -s ssh $(DESTDIR)$(bindir)/slogin
135 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
136 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
045672f9 137
ff8ecdb8 138 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config -a ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
fc1e8bf4 139 ./mkinstalldirs $(DESTDIR)$(sysconfdir); \
ff8ecdb8 140 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
141 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
af381f02 142 fi
d3083fbd 143 if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
ad85db64 144 $(PERL) fixprogs ssh_prng_cmds $(ENT); \
145 $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
d3083fbd 146 fi
af381f02 147
6bf4d066 148host-key: ssh-keygen
3d1a1654 149 ./ssh-keygen -b 1024 -f $(sysconfdir)/ssh_host_key -N ""
150 ./ssh-keygen -d -f $(sysconfdir)/ssh_host_dsa_key -N ""
6bf4d066 151
8946db53 152uninstallall: uninstall
ff8ecdb8 153 -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
154 -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
d3083fbd 155 -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
ff8ecdb8 156 -rmdir $(DESTDIR)$(sysconfdir)
157 -rmdir $(DESTDIR)$(bindir)
158 -rmdir $(DESTDIR)$(sbindir)
159 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
160 -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
161 -rmdir $(DESTDIR)$(mandir)
162 -rmdir $(DESTDIR)$(libexecdir)
8946db53 163
164uninstall:
ff8ecdb8 165 -rm -f $(DESTDIR)$(bindir)/ssh
166 -rm -f $(DESTDIR)$(bindir)/scp
167 -rm -f $(DESTDIR)$(bindir)/ssh-add
168 -rm -f $(DESTDIR)$(bindir)/ssh-agent
169 -rm -f $(DESTDIR)$(bindir)/ssh-keygen
170 -rm -f $(DESTDIR)$(sbindir)/sshd
171 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
172 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
173 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
174 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
175 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
176 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
177 -rm -f $(DESTDIR)$(bindir)/slogin
178 -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
179 -rm -f $(DESTDIR)${ASKPASS_PROGRAM}
180 -rmdir $(DESTDIR)$(libexecdir)/ssh ;
This page took 0.101527 seconds and 5 git commands to generate.