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