diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-12-10 21:58:11 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-12-10 21:58:11 +0000 |
commit | 357fdb60b603260e9fa09ed95ff9da3b6c43969c (patch) | |
tree | 49ecdb4be18b44fd4a075699d55a2d8ea7bb5686 /lib/Makefile.riscos | |
parent | b6f855cb9b6e40907a84799e5c2e8b80f4d3dcb8 (diff) | |
download | curl-357fdb60b603260e9fa09ed95ff9da3b6c43969c.tar.gz |
Dan Fandrich: added some missing files. "I can't try them so they might still
be broken, but at least they'll be less broken than they are now."
Diffstat (limited to 'lib/Makefile.riscos')
-rw-r--r-- | lib/Makefile.riscos | 32 |
1 files changed, 24 insertions, 8 deletions
diff --git a/lib/Makefile.riscos b/lib/Makefile.riscos index 9357a58d8..37b008f4b 100644 --- a/lib/Makefile.riscos +++ b/lib/Makefile.riscos @@ -5,11 +5,12 @@ # Project objects: objs = o.base64 o.connect o.cookie o.dict \ o.dllinit o.easy o.escape o.file \ - o.formdata o.ftp o.getdate o.getenv \ - o.getinfo o.getpass o.hostip o.http \ - o.http_chunks o.if2ip o.krb4 o.ldap \ - o.memdebug o.mprintf o.netrc o.progress \ - o.security o.sendf o.speedcheck o.ssluse \ + o.formdata o.ftp o.getenv \ + o.getinfo o.getpass o.hostip \ + o.hostip4 o.hostsyn o.http \ + o.http_chunks o.inet_ntop o.inet_pton o.if2ip o.krb4 o.ldap \ + o.memdebug o.mprintf o.netrc o.parsedate o.progress \ + o.security o.select o.sendf o.speedcheck o.ssluse \ o.strequal o.strtok o.telnet o.timeval \ o.transfer o.url o.version o.strtoofft @@ -52,9 +53,6 @@ o.formdata: c.formdata o.ftp: c.ftp gcc $(compileropts) -c -o ftp.o c.ftp -o.getdate: c.getdate - gcc $(compileropts) -c -o getdate.o c.getdate - o.getenv: c.getenv gcc $(compileropts) -c -o getenv.o c.getenv @@ -67,6 +65,12 @@ o.getpass: c.getpass o.hostip: c.hostip gcc $(compileropts) -c -o hostip.o c.hostip +o.hostip4: c.hostip4 + gcc $(compileropts) -c -o hostip4.o c.hostip4 + +o.hostsyn: c.hostsyn + gcc $(compileropts) -c -o hostsyn.o c.hostsyn + o.http: c.http gcc $(compileropts) -c -o http.o c.http @@ -76,6 +80,12 @@ o.http_chunks: c.http_chunks o.if2ip: c.if2ip gcc $(compileropts) -c -o if2ip.o c.if2ip +o.inet_ntop: c.inet_ntop + gcc $(compileropts) -c -o inet_ntop.o c.inet_ntop + +o.inet_pton: c.inet_pton + gcc $(compileropts) -c -o inet_pton.o c.inet_pton + o.krb4: c.krb4 gcc $(compileropts) -c -o krb4.o c.krb4 @@ -91,12 +101,18 @@ o.mprintf: c.mprintf o.netrc: c.netrc gcc $(compileropts) -c -o netrc.o c.netrc +o.parsedate: c.parsedate + gcc $(compileropts) -c -o parsedate.o c.parsedate + o.progress: c.progress gcc $(compileropts) -c -o progress.o c.progress o.security: c.security gcc $(compileropts) -c -o security.o c.security +o.select: c.select + gcc $(compileropts) -c -o select.o c.select + o.sendf: c.sendf gcc $(compileropts) -c -o sendf.o c.sendf |