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