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