]> andersk Git - gssapi-openssh.git/blob - openssh/Makefile.in
if gss_export_cred() returns X509_USER_DELEG_PROXY, set X509_USER_PROXY
[gssapi-openssh.git] / openssh / Makefile.in
1 # $Id$
2
3 # uncomment if you run a non bourne compatable shell. Ie. csh
4 #SHELL = @SH@
5
6 AUTORECONF=autoreconf
7
8 prefix=@prefix@
9 exec_prefix=@exec_prefix@
10 bindir=@bindir@
11 sbindir=@sbindir@
12 libexecdir=@libexecdir@
13 datadir=@datadir@
14 mandir=@mandir@
15 mansubdir=@mansubdir@
16 sysconfdir=@sysconfdir@
17 piddir=@piddir@
18 srcdir=@srcdir@
19 top_srcdir=@top_srcdir@
20
21 DESTDIR=
22 VPATH=@srcdir@
23 SSH_PROGRAM=@bindir@/ssh
24 ASKPASS_PROGRAM=$(libexecdir)/ssh-askpass
25 SFTP_SERVER=$(libexecdir)/sftp-server
26 SSH_KEYSIGN=$(libexecdir)/ssh-keysign
27 RAND_HELPER=$(libexecdir)/ssh-rand-helper
28 PRIVSEP_PATH=@PRIVSEP_PATH@
29 SSH_PRIVSEP_USER=@SSH_PRIVSEP_USER@
30
31 PATHS= -DSSHDIR=\"$(sysconfdir)\" \
32         -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \
33         -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \
34         -D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \
35         -D_PATH_SSH_KEY_SIGN=\"$(SSH_KEYSIGN)\" \
36         -D_PATH_SSH_PIDDIR=\"$(piddir)\" \
37         -D_PATH_PRIVSEP_CHROOT_DIR=\"$(PRIVSEP_PATH)\" \
38         -DSSH_RAND_HELPER=\"$(RAND_HELPER)\"
39
40 CC=@CC@
41 LD=@LD@
42 CFLAGS=@CFLAGS@
43 CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@
44 LIBS=@LIBS@
45 LIBPAM=@LIBPAM@
46 LIBWRAP=@LIBWRAP@
47 AR=@AR@
48 RANLIB=@RANLIB@
49 INSTALL=@INSTALL@
50 PERL=@PERL@
51 ENT=@ENT@
52 XAUTH_PATH=@XAUTH_PATH@
53 LDFLAGS=-L. -Lopenbsd-compat/ @LDFLAGS@
54 EXEEXT=@EXEEXT@
55
56 INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
57 INSTALL_SSH_RAND_HELPER=@INSTALL_SSH_RAND_HELPER@
58 INSTALL_GSISSH=@INSTALL_GSISSH@
59
60 @NO_SFTP@SFTP_PROGS=sftp-server$(EXEEXT) sftp$(EXEEXT)
61
62 TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-keysign${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) ssh-rand-helper${EXEEXT} $(SFTP_PROGS)
63
64 LIBSSH_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 dh.o dispatch.o fatal.o mac.o msg.o hostfile.o key.o kex.o kexdh.o kexgex.o log.o match.o misc.o mpaux.o nchan.o packet.o radix.o rijndael.o entropy.o readpass.o rsa.o scard.o scard-opensc.o ssh-dss.o ssh-rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o monitor_wrap.o monitor_fdpass.o kexgss.o gss-genr.o
65
66 SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o sshtty.o readconf.o clientloop.o
67
68 SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth2-hostbased.o auth2-kbdint.o auth2-none.o auth2-passwd.o auth2-pubkey.o auth-chall.o auth2-chall.o auth-rhosts.o auth-options.o auth-krb4.o auth-krb5.o auth-pam.o auth2-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o auth-sia.o sshpty.o sshlogin.o loginrec.o servconf.o serverloop.o md5crypt.o session.o groupaccess.o auth-skey.o auth-bsdauth.o monitor_mm.o monitor.o auth2-gss.o gss-serv.o
69
70 MANPAGES        = scp.1.out ssh-add.1.out ssh-agent.1.out ssh-keygen.1.out ssh-keyscan.1.out ssh.1.out sshd.8.out sftp-server.8.out sftp.1.out ssh-rand-helper.8.out ssh-keysign.8.out sshd_config.5.out ssh_config.5.out
71 MANPAGES_IN     = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1 ssh-rand-helper.8 ssh-keysign.8 sshd_config.5 ssh_config.5
72 MANTYPE         = @MANTYPE@
73
74 CONFIGFILES=sshd_config.out ssh_config.out moduli.out
75 CONFIGFILES_IN=sshd_config ssh_config moduli
76
77 PATHSUBS        = \
78         -D/etc/ssh/ssh_prng_cmds=$(sysconfdir)/ssh_prng_cmds \
79         -D/etc/ssh/ssh_config=$(sysconfdir)/ssh_config \
80         -D/etc/ssh/ssh_known_hosts=$(sysconfdir)/ssh_known_hosts \
81         -D/etc/ssh/sshd_config=$(sysconfdir)/sshd_config \
82         -D/usr/libexec=$(libexecdir) \
83         -D/etc/shosts.equiv=$(sysconfdir)/shosts.equiv \
84         -D/etc/ssh/ssh_host_key=$(sysconfdir)/ssh_host_key \
85         -D/etc/ssh/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \
86         -D/etc/ssh/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \
87         -D/var/run/sshd.pid=$(piddir)/sshd.pid \
88         -D/etc/ssh/moduli=$(sysconfdir)/moduli \
89         -D/etc/ssh/sshrc=$(sysconfdir)/sshrc \
90         -D/usr/X11R6/bin/xauth=$(XAUTH_PATH) \
91         -D/var/empty=$(PRIVSEP_PATH) \
92         -D/usr/bin:/bin:/usr/sbin:/sbin=@user_path@
93
94 FIXPATHSCMD     = $(PERL) $(srcdir)/fixpaths $(PATHSUBS)
95
96 all: $(CONFIGFILES) $(MANPAGES) $(TARGETS)
97
98 $(LIBSSH_OBJS): config.h
99 $(SSHOBJS): config.h
100 $(SSHDOBJS): config.h
101
102 .c.o:
103         $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
104
105 LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
106 $(LIBCOMPAT): always
107         (cd openbsd-compat && $(MAKE))
108 always:
109
110 libssh.a: $(LIBSSH_OBJS)
111         $(AR) rv $@ $(LIBSSH_OBJS)
112         $(RANLIB) $@
113
114 ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
115         $(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
116
117 sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS)
118         $(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBWRAP) $(LIBPAM) $(LIBS)
119
120 scp$(EXEEXT): $(LIBCOMPAT) libssh.a scp.o
121         $(LD) -o $@ scp.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
122
123 ssh-add$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-add.o
124         $(LD) -o $@ ssh-add.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
125
126 ssh-agent$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-agent.o
127         $(LD) -o $@ ssh-agent.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
128
129 ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keygen.o
130         $(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
131
132 ssh-keysign$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keysign.o
133         $(LD) -o $@ ssh-keysign.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
134
135 ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o
136         $(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS) 
137
138 sftp-server$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-common.o sftp-server.o
139         $(LD) -o $@ sftp-server.o sftp-common.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 
140
141 sftp$(EXEEXT): $(LIBCOMPAT) libssh.a sftp.o sftp-client.o sftp-int.o sftp-common.o sftp-glob.o
142         $(LD) -o $@ sftp.o sftp-client.o sftp-common.o sftp-int.o sftp-glob.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
143
144 ssh-rand-helper${EXEEXT}: $(LIBCOMPAT) libssh.a ssh-rand-helper.o
145         $(LD) -o $@ ssh-rand-helper.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
146
147 # test driver for the loginrec code - not built by default
148 logintest: logintest.o $(LIBCOMPAT) libssh.a loginrec.o
149         $(LD) -o $@ logintest.o $(LDFLAGS) loginrec.o -lopenbsd-compat -lssh $(LIBS)
150
151 $(MANPAGES): $(MANPAGES_IN)
152         if test "$(MANTYPE)" = "cat"; then \
153                 manpage=$(srcdir)/`echo $@ | sed 's/\.[1-9]\.out$$/\.0/'`; \
154         else \
155                 manpage=$(srcdir)/`echo $@ | sed 's/\.out$$//'`; \
156         fi; \
157         if test "$(MANTYPE)" = "man"; then \
158                 $(FIXPATHSCMD) $${manpage} | $(PERL) $(srcdir)/mdoc2man.pl > $@; \
159         else \
160                 $(FIXPATHSCMD) $${manpage} > $@; \
161         fi
162
163 $(CONFIGFILES): $(CONFIGFILES_IN)
164         conffile=`echo $@ | sed 's/.out$$//'`; \
165         $(FIXPATHSCMD) $(srcdir)/$${conffile} > $@
166
167 clean:
168         rm -f *.o *.a $(TARGETS) logintest config.cache config.log 
169         rm -f *.out core 
170         (cd openbsd-compat && $(MAKE) clean)
171
172 distclean:
173         rm -f *.o *.a $(TARGETS) logintest config.cache config.log 
174         rm -f *.out core
175         rm -f Makefile config.h config.status ssh_prng_cmds *~
176         rm -rf autom4te.cache
177         (cd openbsd-compat && $(MAKE) distclean)
178         (cd scard && $(MAKE) distclean)
179
180 veryclean:
181         rm -f configure config.h.in *.0
182         rm -f *.o *.a $(TARGETS) logintest config.cache config.log 
183         rm -f *.out core
184         rm -f Makefile config.h config.status ssh_prng_cmds *~
185         (cd openbsd-compat && $(MAKE) distclean)
186         (cd scard && $(MAKE) distclean)
187
188 mrproper: distclean
189
190 catman-do:
191         @for f in $(MANPAGES_IN) ; do \
192                 base=`echo $$f | sed 's/\..*$$//'` ; \
193                 echo "$$f -> $$base.0" ; \
194                 nroff -mandoc $$f | cat -v | sed -e 's/.\^H//g' \
195                         >$$base.0 ; \
196         done
197
198 distprep: catman-do
199         $(AUTORECONF)
200         (cd scard && $(MAKE) -f Makefile.in distprep)
201
202 install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key check-user
203 install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
204
205 check-user:
206         id $(SSH_PRIVSEP_USER) || \
207                 echo "WARNING: Privilege separation user \"$(SSH_PRIVSEP_USER)\" does not exist"
208
209 scard-install:
210         (cd scard && $(MAKE) DESTDIR=$(DESTDIR) install)
211
212 install-files: scard-install
213         $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
214         $(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
215         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
216         $(srcdir)/mkinstalldirs $(DESTDIR)$(datadir)
217         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
218         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)5
219         $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
220         $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)
221         $(srcdir)/mkinstalldirs $(DESTDIR)$(PRIVSEP_PATH)
222         chmod 0700 $(DESTDIR)$(PRIVSEP_PATH)
223         $(INSTALL) -m 0755 -s ssh $(DESTDIR)$(bindir)/ssh
224         $(INSTALL) -m 0755 -s scp $(DESTDIR)$(bindir)/scp
225         $(INSTALL) -m 0755 -s ssh-add $(DESTDIR)$(bindir)/ssh-add
226         $(INSTALL) -m 0755 -s ssh-agent $(DESTDIR)$(bindir)/ssh-agent
227         $(INSTALL) -m 0755 -s ssh-keygen $(DESTDIR)$(bindir)/ssh-keygen
228         $(INSTALL) -m 0755 -s ssh-keyscan $(DESTDIR)$(bindir)/ssh-keyscan
229         $(INSTALL) -m 0755 -s sshd $(DESTDIR)$(sbindir)/sshd
230         if test ! -z "$(INSTALL_SSH_RAND_HELPER)" ; then \
231                 $(INSTALL) -m 0755 -s ssh-rand-helper $(DESTDIR)$(libexecdir)/ssh-rand-helper ; \
232         fi
233         $(INSTALL) -m 4711 -s ssh-keysign $(DESTDIR)$(SSH_KEYSIGN)
234         @NO_SFTP@$(INSTALL) -m 0755 -s sftp $(DESTDIR)$(bindir)/sftp
235         @NO_SFTP@$(INSTALL) -m 0755 -s sftp-server $(DESTDIR)$(SFTP_SERVER)
236         $(INSTALL) -m 644 ssh.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
237         $(INSTALL) -m 644 scp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
238         $(INSTALL) -m 644 ssh-add.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
239         $(INSTALL) -m 644 ssh-agent.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
240         $(INSTALL) -m 644 ssh-keygen.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
241         $(INSTALL) -m 644 ssh-keyscan.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
242         $(INSTALL) -m 644 sshd_config.5.out $(DESTDIR)$(mandir)/$(mansubdir)5/sshd_config.5
243         $(INSTALL) -m 644 ssh_config.5.out $(DESTDIR)$(mandir)/$(mansubdir)5/ssh_config.5
244         $(INSTALL) -m 644 sshd.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
245         if [ ! -z "$(INSTALL_SSH_RAND_HELPER)" ]; then \
246                 $(INSTALL) -m 644 ssh-rand-helper.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-rand-helper.8 ; \
247         fi
248         @NO_SFTP@$(INSTALL) -m 644 sftp.1.out $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
249         @NO_SFTP@$(INSTALL) -m 644 sftp-server.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
250         $(INSTALL) -m 644 ssh-keysign.8.out $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
251         -rm -f $(DESTDIR)$(bindir)/slogin
252         ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/slogin
253         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
254         ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
255         if [ ! -z "$(INSTALL_GSISSH)" ]; then \
256                 rm -f $(DESTDIR)$(bindir)/gsissh; \
257                 ln -s ssh$(EXEEXT) $(DESTDIR)$(bindir)/gsissh; \
258                 rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/gsissh.1; \
259                 ln -s ssh.1 $(DESTDIR)$(mandir)/$(mansubdir)1/gsissh.1; \
260                 rm -f $(DESTDIR)$(bindir)/gsiscp; \
261                 ln -s scp$(EXEEXT) $(DESTDIR)$(bindir)/gsiscp; \
262                 rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/gsiscp.1; \
263                 ln -s scp.1 $(DESTDIR)$(mandir)/$(mansubdir)1/gsiscp.1; \
264         fi
265         if [ ! -d $(DESTDIR)$(sysconfdir) ]; then \
266                 $(srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir); \
267         fi
268         if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_config ]; then \
269                 $(INSTALL) -m 644 ssh_config.out $(DESTDIR)$(sysconfdir)/ssh_config; \
270         else \
271                 echo "$(DESTDIR)$(sysconfdir)/ssh_config already exists, install will not overwrite"; \
272         fi
273         if [ ! -f $(DESTDIR)$(sysconfdir)/sshd_config ]; then \
274                 $(INSTALL) -m 644 sshd_config.out $(DESTDIR)$(sysconfdir)/sshd_config; \
275         else \
276                 echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \
277         fi
278         if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \
279                 $(PERL) $(srcdir)/fixprogs ssh_prng_cmds $(ENT); \
280                 if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \
281                         $(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \
282                 else \
283                         echo "$(DESTDIR)$(sysconfdir)/ssh_prng_cmds already exists, install will not overwrite"; \
284                 fi ; \
285         fi
286         if [ ! -f $(DESTDIR)$(sysconfdir)/moduli ]; then \
287                 if [ -f $(DESTDIR)$(sysconfdir)/primes ]; then \
288                         echo "moving $(DESTDIR)$(sysconfdir)/primes to $(DESTDIR)$(sysconfdir)/moduli"; \
289                         mv "$(DESTDIR)$(sysconfdir)/primes" "$(DESTDIR)$(sysconfdir)/moduli"; \
290                 else \
291                         $(INSTALL) -m 644 moduli.out $(DESTDIR)$(sysconfdir)/moduli; \
292                 fi ; \
293         else \
294                 echo "$(DESTDIR)$(sysconfdir)/moduli already exists, install will not overwrite"; \
295         fi
296
297 host-key: ssh-keygen$(EXEEXT)
298         if [ -z "$(DESTDIR)" ] ; then \
299                 if [ -f "$(DESTDIR)$(sysconfdir)/ssh_host_key" ] ; then \
300                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_key already exists, skipping." ; \
301                 else \
302                         ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N "" ; \
303                 fi ; \
304                 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key ] ; then \
305                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_dsa_key already exists, skipping." ; \
306                 else \
307                         ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N "" ; \
308                 fi ; \
309                 if [ -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key ] ; then \
310                         echo "$(DESTDIR)$(sysconfdir)/ssh_host_rsa_key already exists, skipping." ; \
311                 else \
312                         ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N "" ; \
313                 fi ; \
314         fi ;
315
316 host-key-force: ssh-keygen$(EXEEXT)
317         ./ssh-keygen -t rsa1 -f $(DESTDIR)$(sysconfdir)/ssh_host_key -N ""
318         ./ssh-keygen -t dsa -f $(DESTDIR)$(sysconfdir)/ssh_host_dsa_key -N ""
319         ./ssh-keygen -t rsa -f $(DESTDIR)$(sysconfdir)/ssh_host_rsa_key -N ""
320
321 uninstallall:   uninstall
322         -rm -f $(DESTDIR)$(sysconfdir)/ssh_config
323         -rm -f $(DESTDIR)$(sysconfdir)/sshd_config
324         -rm -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds
325         -rmdir $(DESTDIR)$(sysconfdir)
326         -rmdir $(DESTDIR)$(bindir)
327         -rmdir $(DESTDIR)$(sbindir)
328         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)1
329         -rmdir $(DESTDIR)$(mandir)/$(mansubdir)8
330         -rmdir $(DESTDIR)$(mandir)
331         -rmdir $(DESTDIR)$(libexecdir)
332
333 uninstall: 
334         -rm -f $(DESTDIR)$(bindir)/slogin
335         if [ ! -z "$(INSTALL_GSISSH)" ]; then \
336                 rm -f $(DESTDIR)$(bindir)/gsiscp; \
337                 rm -f $(DESTDIR)$(bindir)/gsissh; \
338         fi
339         -rm -f $(DESTDIR)$(bindir)/ssh$(EXEEXT)
340         -rm -f $(DESTDIR)$(bindir)/scp$(EXEEXT)
341         -rm -f $(DESTDIR)$(bindir)/ssh-add$(EXEEXT)
342         -rm -f $(DESTDIR)$(bindir)/ssh-agent$(EXEEXT)
343         -rm -f $(DESTDIR)$(bindir)/ssh-keygen$(EXEEXT)
344         -rm -f $(DESTDIR)$(bindir)/ssh-keyscan$(EXEEXT)
345         -rm -f $(DESTDIR)$(bindir)/sftp$(EXEEXT)
346         -rm -f $(DESTDIR)$(sbindir)/sshd$(EXEEXT)
347         -rm -r $(DESTDIR)$(SFTP_SERVER)$(EXEEXT)
348         -rm -f $(DESTDIR)$(SSH_KEYSIGN)$(EXEEXT)
349         -rm -f $(DESTDIR)$(RAND_HELPER)$(EXEEXT)
350         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh.1
351         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/scp.1
352         if [ ! -z "$(INSTALL_GSISSH)" ]; then \
353                 rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/gsissh.1; \
354                 rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/gsiscp.1; \
355         fi
356         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-add.1
357         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-agent.1
358         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keygen.1
359         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/sftp.1
360         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/ssh-keyscan.1
361         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sshd.8
362         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-rand-helper.8
363         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/sftp-server.8
364         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)8/ssh-keysign.8
365         -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1
This page took 0.065161 seconds and 5 git commands to generate.