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:
Daniel Stenberg 2004-12-10 21:58:11 +00:00
parent b6f855cb9b
commit 357fdb60b6
2 changed files with 31 additions and 14 deletions

View File

@ -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

View File

@ -12,12 +12,13 @@ CFLAGS = -I$(ATCPSDKI) -m68020-60 -noixemul -I. -I../include -W -Wall
OBJS = \
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 \
getinfo.c hash.c hostip.c http.c http_chunks.c http_digest.c \
http_negotiate.c http_ntlm.c if2ip.c inet_pton.c krb4.c ldap.c \
llist.c md5.c memdebug.c mprintf.c multi.c netrc.c progress.c \
security.c sendf.c share.c speedcheck.c ssluse.c strequal.c \
strtok.c telnet.c timeval.c transfer.c url.c version.c
easy.c escape.c file.c formdata.c ftp.c getenv.c \
getinfo.c hash.c hostip.c hostip4.c hostsyn.c http.c http_chunks.c \
http_digest.c http_negotiate.c http_ntlm.c if2ip.c inet_ntop.c \
inet_pton.c krb4.c ldap.c \
llist.c md5.c memdebug.c mprintf.c multi.c netrc.c parsedate.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)
ar cru libcurl.a $(OBJS:.c=.o)