diff --git a/secure/usr.bin/ssh/Makefile b/secure/usr.bin/ssh/Makefile index 710d4fbfed36..54409b075bc5 100644 --- a/secure/usr.bin/ssh/Makefile +++ b/secure/usr.bin/ssh/Makefile @@ -10,7 +10,7 @@ MAN1= ssh.1 LINKS= ${BINDIR}/ssh ${BINDIR}/slogin MLINKS= ssh.1 slogin.1 -SRCS= ssh.c sshconnect.c log-client.c readconf.c clientloop.c +SRCS= clientloop.c key.c log-client.c readconf.c ssh.c sshconnect.c .include diff --git a/secure/usr.sbin/sshd/Makefile b/secure/usr.sbin/sshd/Makefile index 62ec36287923..3ac7555f2d65 100644 --- a/secure/usr.sbin/sshd/Makefile +++ b/secure/usr.sbin/sshd/Makefile @@ -9,9 +9,9 @@ BINOWN= root BINMODE=555 MAN8= sshd.8 -SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ - pty.c log-server.c login.c servconf.c serverloop.c \ - login_access.c +SRCS= auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c \ + key.c log-server.c login.c login_access.c pty.c servconf.c \ + serverloop.c sshd.c \ CFLAGS+= -DLIBWRAP -DLOGIN_ACCESS -I${LOGINSRC}