diff options
author | Darren Tucker <dtucker@zip.com.au> | 2010-01-08 19:27:57 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2010-01-08 19:27:57 +1100 |
commit | dce7a92c7a1dbdfc280d6274eb5dfa5fce062acf (patch) | |
tree | fdf9fa0efabcfdc627a8635a9fc44cbbc653a79d /Makefile.in | |
parent | 8cbd403fde20dda880a7ff3262bf2c36f6582eac (diff) |
- (dtucker) [Makefile.in] .c files do not belong in the OBJ lines.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index a16782dff..d7f338c0f 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: Makefile.in,v 1.302 2010/01/08 08:13:25 dtucker Exp $ | 1 | # $Id: Makefile.in,v 1.303 2010/01/08 08:27:57 dtucker Exp $ |
2 | 2 | ||
3 | # uncomment if you run a non bourne compatable shell. Ie. csh | 3 | # uncomment if you run a non bourne compatable shell. Ie. csh |
4 | #SHELL = @SH@ | 4 | #SHELL = @SH@ |
@@ -75,7 +75,7 @@ LIBSSH_OBJS=acss.o authfd.o authfile.o bufaux.o bufbn.o buffer.o \ | |||
75 | 75 | ||
76 | SSHOBJS= ssh.o readconf.o clientloop.o sshtty.o \ | 76 | SSHOBJS= ssh.o readconf.o clientloop.o sshtty.o \ |
77 | sshconnect.o sshconnect1.o sshconnect2.o mux.o \ | 77 | sshconnect.o sshconnect1.o sshconnect2.o mux.o \ |
78 | roaming_common.o roaming_client.c | 78 | roaming_common.o roaming_client.o |
79 | 79 | ||
80 | SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o \ | 80 | SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o \ |
81 | sshpty.o sshlogin.o servconf.o serverloop.o \ | 81 | sshpty.o sshlogin.o servconf.o serverloop.o \ |
@@ -88,7 +88,7 @@ SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o \ | |||
88 | auth2-gss.o gss-serv.o gss-serv-krb5.o \ | 88 | auth2-gss.o gss-serv.o gss-serv-krb5.o \ |
89 | loginrec.o auth-pam.o auth-shadow.o auth-sia.o md5crypt.o \ | 89 | loginrec.o auth-pam.o auth-shadow.o auth-sia.o md5crypt.o \ |
90 | audit.o audit-bsm.o platform.o sftp-server.o sftp-common.o \ | 90 | audit.o audit-bsm.o platform.o sftp-server.o sftp-common.o \ |
91 | roaming_common.o roaming_serv.c | 91 | roaming_common.o roaming_serv.o |
92 | 92 | ||
93 | MANPAGES = moduli.5.out 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 | 93 | MANPAGES = moduli.5.out 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 |
94 | MANPAGES_IN = moduli.5 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 | 94 | MANPAGES_IN = moduli.5 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 |