diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2010-05-12 17:31:22 -0700 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2010-05-12 17:32:10 -0700 |
commit | ad6bc4d82e17c65322f2a2ee5fb0b1895dd19e94 (patch) | |
tree | d525c48995a82c54a40164841863a2f9e7225a94 /lib | |
parent | 147609ca6ecdb08204c97f91d99cd9c2818b19b6 (diff) |
Added the new ftp source files to the non-autoconf build files
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.Watcom | 1 | ||||
-rw-r--r-- | lib/Makefile.riscos | 16 | ||||
-rw-r--r-- | lib/Makefile.vc6 | 10 |
3 files changed, 22 insertions, 5 deletions
diff --git a/lib/Makefile.Watcom b/lib/Makefile.Watcom index afa6da3ef..61600078d 100644 --- a/lib/Makefile.Watcom +++ b/lib/Makefile.Watcom @@ -44,6 +44,7 @@ CSOURCES = file.c timeval.c base64.c hostip.c progress.c formdata.c & cookie.c http.c sendf.c ftp.c url.c dict.c if2ip.c speedcheck.c & ldap.c ssluse.c version.c getenv.c escape.c mprintf.c telnet.c & netrc.c getinfo.c transfer.c strequal.c easy.c security.c krb4.c & + curl_fnmatch.c fileinfo.c ftplistparser.c wildcard.c & krb5.c memdebug.c http_chunks.c strtok.c connect.c llist.c hash.c & multi.c content_encoding.c share.c http_digest.c md5.c curl_rand.c & http_negotiate.c http_ntlm.c inet_pton.c strtoofft.c strerror.c & diff --git a/lib/Makefile.riscos b/lib/Makefile.riscos index 90f73c92c..13a9424ea 100644 --- a/lib/Makefile.riscos +++ b/lib/Makefile.riscos @@ -9,6 +9,7 @@ objs = o.base64 o.connect o.cookie o.dict \ 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.curl_fnmatch o.fileinfo o.ftplistparser o.wildcard \ 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 \ @@ -159,7 +160,7 @@ o.smtp: c.smtp o.speedcheck: c.speedcheck gcc $(compileropts) -c -o speedcheck.o c.speedcheck -o.gtls: c.gtls +o.gtls: c.gtls gcc $(compileropts) -c -o gtls.o c.gtls o.sslgen: c.sslgen @@ -192,7 +193,7 @@ o.timeval: c.timeval o.transfer: c.transfer gcc $(compileropts) -c -o transfer.o c.transfer -o.url: c.url +o.url: c.url gcc $(compileropts) -c -o url.o c.url o.version: c.version @@ -201,3 +202,14 @@ o.version: c.version o.warnless: c.warnless gcc $(compileropts) -c -o warnless.o c.warnless +o.curl_fnmatch: c.curl_fnmatch + gcc $(compileropts) -c -o curl_fnmatch.o c.curl_fnmatch + +o.fileinfo: c.fileinfo + gcc $(compileropts) -c -o fileinfo.o c.fileinfo + +o.ftplistparser: c.ftplistparser + gcc $(compileropts) -c -o ftplistparser.o c.ftplistparser + +o.wildcard: c.wildcard + gcc $(compileropts) -c -o wildcard.o c.wildcard diff --git a/lib/Makefile.vc6 b/lib/Makefile.vc6 index 844cc9c4a..601ae8e44 100644 --- a/lib/Makefile.vc6 +++ b/lib/Makefile.vc6 @@ -449,6 +449,7 @@ X_OBJS= \ $(DIROBJ)\content_encoding.obj \
$(DIROBJ)\cookie.obj \
$(DIROBJ)\curl_addrinfo.obj \
+ $(DIROBJ)\curl_fnmatch.obj \
$(DIROBJ)\curl_memrchr.obj \
$(DIROBJ)\curl_rand.obj \
$(DIROBJ)\curl_sspi.obj \
@@ -456,8 +457,10 @@ X_OBJS= \ $(DIROBJ)\dict.obj \
$(DIROBJ)\easy.obj \
$(DIROBJ)\escape.obj \
+ $(DIROBJ)\fileinfo.obj \
$(DIROBJ)\file.obj \
$(DIROBJ)\formdata.obj \
+ $(DIROBJ)\ftplistparser.obj \
$(DIROBJ)\ftp.obj \
$(DIROBJ)\getenv.obj \
$(DIROBJ)\getinfo.obj \
@@ -466,16 +469,16 @@ X_OBJS= \ $(DIROBJ)\hmac.obj \
$(DIROBJ)\hostares.obj \
$(DIROBJ)\hostasyn.obj \
- $(DIROBJ)\hostip.obj \
$(DIROBJ)\hostip4.obj \
$(DIROBJ)\hostip6.obj \
+ $(DIROBJ)\hostip.obj \
$(DIROBJ)\hostsyn.obj \
$(DIROBJ)\hostthre.obj \
- $(DIROBJ)\http.obj \
$(DIROBJ)\http_chunks.obj \
$(DIROBJ)\http_digest.obj \
$(DIROBJ)\http_negotiate.obj \
$(DIROBJ)\http_ntlm.obj \
+ $(DIROBJ)\http.obj \
$(DIROBJ)\if2ip.obj \
$(DIROBJ)\imap.obj \
$(DIROBJ)\inet_ntop.obj \
@@ -499,8 +502,8 @@ X_OBJS= \ $(DIROBJ)\share.obj \
$(DIROBJ)\slist.obj \
$(DIROBJ)\smtp.obj \
- $(DIROBJ)\socks.obj \
$(DIROBJ)\socks_gssapi.obj \
+ $(DIROBJ)\socks.obj \
$(DIROBJ)\socks_sspi.obj \
$(DIROBJ)\speedcheck.obj \
$(DIROBJ)\splay.obj \
@@ -518,6 +521,7 @@ X_OBJS= \ $(DIROBJ)\url.obj \
$(DIROBJ)\version.obj \
$(DIROBJ)\warnless.obj \
+ $(DIROBJ)\wildcard.obj \
$(RESOURCE)
all : $(TARGET)
|