mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
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."
This commit is contained in:
parent
b6f855cb9b
commit
357fdb60b6
@ -5,11 +5,12 @@
|
|||||||
# Project objects:
|
# Project objects:
|
||||||
objs = o.base64 o.connect o.cookie o.dict \
|
objs = o.base64 o.connect o.cookie o.dict \
|
||||||
o.dllinit o.easy o.escape o.file \
|
o.dllinit o.easy o.escape o.file \
|
||||||
o.formdata o.ftp o.getdate o.getenv \
|
o.formdata o.ftp o.getenv \
|
||||||
o.getinfo o.getpass o.hostip o.http \
|
o.getinfo o.getpass o.hostip \
|
||||||
o.http_chunks o.if2ip o.krb4 o.ldap \
|
o.hostip4 o.hostsyn o.http \
|
||||||
o.memdebug o.mprintf o.netrc o.progress \
|
o.http_chunks o.inet_ntop o.inet_pton o.if2ip o.krb4 o.ldap \
|
||||||
o.security o.sendf o.speedcheck o.ssluse \
|
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.strequal o.strtok o.telnet o.timeval \
|
||||||
o.transfer o.url o.version o.strtoofft
|
o.transfer o.url o.version o.strtoofft
|
||||||
|
|
||||||
@ -52,9 +53,6 @@ o.formdata: c.formdata
|
|||||||
o.ftp: c.ftp
|
o.ftp: c.ftp
|
||||||
gcc $(compileropts) -c -o ftp.o 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
|
o.getenv: c.getenv
|
||||||
gcc $(compileropts) -c -o getenv.o c.getenv
|
gcc $(compileropts) -c -o getenv.o c.getenv
|
||||||
|
|
||||||
@ -67,6 +65,12 @@ o.getpass: c.getpass
|
|||||||
o.hostip: c.hostip
|
o.hostip: c.hostip
|
||||||
gcc $(compileropts) -c -o hostip.o 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
|
o.http: c.http
|
||||||
gcc $(compileropts) -c -o http.o c.http
|
gcc $(compileropts) -c -o http.o c.http
|
||||||
|
|
||||||
@ -76,6 +80,12 @@ o.http_chunks: c.http_chunks
|
|||||||
o.if2ip: c.if2ip
|
o.if2ip: c.if2ip
|
||||||
gcc $(compileropts) -c -o if2ip.o 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
|
o.krb4: c.krb4
|
||||||
gcc $(compileropts) -c -o krb4.o c.krb4
|
gcc $(compileropts) -c -o krb4.o c.krb4
|
||||||
|
|
||||||
@ -91,12 +101,18 @@ o.mprintf: c.mprintf
|
|||||||
o.netrc: c.netrc
|
o.netrc: c.netrc
|
||||||
gcc $(compileropts) -c -o netrc.o 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
|
o.progress: c.progress
|
||||||
gcc $(compileropts) -c -o progress.o c.progress
|
gcc $(compileropts) -c -o progress.o c.progress
|
||||||
|
|
||||||
o.security: c.security
|
o.security: c.security
|
||||||
gcc $(compileropts) -c -o security.o 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
|
o.sendf: c.sendf
|
||||||
gcc $(compileropts) -c -o sendf.o c.sendf
|
gcc $(compileropts) -c -o sendf.o c.sendf
|
||||||
|
|
||||||
|
@ -12,12 +12,13 @@ CFLAGS = -I$(ATCPSDKI) -m68020-60 -noixemul -I. -I../include -W -Wall
|
|||||||
|
|
||||||
OBJS = \
|
OBJS = \
|
||||||
amigaos.c base64.c connect.c content_encoding.c cookie.c dict.c \
|
amigaos.c base64.c connect.c content_encoding.c cookie.c dict.c \
|
||||||
easy.c escape.c file.c formdata.c ftp.c getdate.c getenv.c \
|
easy.c escape.c file.c formdata.c ftp.c getenv.c \
|
||||||
getinfo.c hash.c hostip.c http.c http_chunks.c http_digest.c \
|
getinfo.c hash.c hostip.c hostip4.c hostsyn.c http.c http_chunks.c \
|
||||||
http_negotiate.c http_ntlm.c if2ip.c inet_pton.c krb4.c ldap.c \
|
http_digest.c http_negotiate.c http_ntlm.c if2ip.c inet_ntop.c \
|
||||||
llist.c md5.c memdebug.c mprintf.c multi.c netrc.c progress.c \
|
inet_pton.c krb4.c ldap.c \
|
||||||
security.c sendf.c share.c speedcheck.c ssluse.c strequal.c \
|
llist.c md5.c memdebug.c mprintf.c multi.c netrc.c parsedate.c \
|
||||||
strtok.c telnet.c timeval.c transfer.c url.c version.c
|
progress.c security.c select.c sendf.c share.c speedcheck.c \
|
||||||
|
ssluse.c strequal.c strtok.c telnet.c timeval.c transfer.c url.c version.c
|
||||||
|
|
||||||
all: $(OBJS:.c=.o)
|
all: $(OBJS:.c=.o)
|
||||||
ar cru libcurl.a $(OBJS:.c=.o)
|
ar cru libcurl.a $(OBJS:.c=.o)
|
||||||
|
Loading…
Reference in New Issue
Block a user