mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
add missing new files to non-configure target build files
This commit is contained in:
parent
077125e4a2
commit
3b24076c3b
@ -53,7 +53,7 @@ CSOURCES = file.c timeval.c base64.c hostip.c progress.c formdata.c &
|
||||
strdup.c socks.c ssh.c nss.c qssl.c rawstr.c curl_addrinfo.c &
|
||||
socks_gssapi.c socks_sspi.c curl_sspi.c slist.c nonblock.c &
|
||||
curl_memrchr.c imap.c pop3.c smtp.c pingpong.c rtsp.c curl_threads.c &
|
||||
warnless.c hmac.c polarssl.c curl_rtmp.c
|
||||
warnless.c hmac.c polarssl.c curl_rtmp.c openldap.c
|
||||
|
||||
OBJS = $(CSOURCES:.c=.obj)
|
||||
OBJS = $OBJ_DIR\$(OBJS: = $OBJ_DIR\)
|
||||
|
@ -1,6 +1,4 @@
|
||||
# Makefile for project libcurl
|
||||
# Generated on Sun,13 Jan 2002.16:57:00 by EasyGCC (0.1.3 [beta 2] (3 Jan 2002))
|
||||
# Contact: easygcc@melotech.co.uk
|
||||
|
||||
# Project objects:
|
||||
objs = o.base64 o.connect o.cookie o.dict \
|
||||
@ -16,7 +14,8 @@ objs = o.base64 o.connect o.cookie o.dict \
|
||||
o.transfer o.url o.version o.strtoofft o.sslgen o.gtls \
|
||||
o.rawstr o.curl_addrinfo o.slist o.nonblock o.curl_rand \
|
||||
o.curl_memrchr o.imap o.pop3 o.smtp o.pingpong o.rtsp \
|
||||
o.curl_threads o.warnless o.hmac o.md5
|
||||
o.curl_threads o.warnless o.hmac o.md5 o.curl_rtmp \
|
||||
o.openldap o.polarssl
|
||||
|
||||
|
||||
# Compile options:
|
||||
@ -46,6 +45,9 @@ o.curl_memrchr: c.curl_memrchr
|
||||
o.curl_rand: c.curl_rand
|
||||
gcc $(compileropts) -c -o curl_rand.o c.curl_rand
|
||||
|
||||
o.curl_rtmp: c.curl_rtmp
|
||||
gcc $(compileropts) -c -o curl_rtmp.o c.curl_rtmp
|
||||
|
||||
o.curl_threads: c.curl_threads
|
||||
gcc $(compileropts) -c -o curl_threads.o c.curl_threads
|
||||
|
||||
@ -127,12 +129,18 @@ o.mprintf: c.mprintf
|
||||
o.netrc: c.netrc
|
||||
gcc $(compileropts) -c -o netrc.o c.netrc
|
||||
|
||||
o.openldap: c.openldap
|
||||
gcc $(compileropts) -c -o openldap.o c.openldap
|
||||
|
||||
o.parsedate: c.parsedate
|
||||
gcc $(compileropts) -c -o parsedate.o c.parsedate
|
||||
|
||||
o.pingpong: c.pingpong
|
||||
gcc $(compileropts) -c -o pingpong.o c.pingpong
|
||||
|
||||
o.polarssl: c.polarssl
|
||||
gcc $(compileropts) -c -o polarssl.o c.polarssl
|
||||
|
||||
o.pop3: c.pop3
|
||||
gcc $(compileropts) -c -o pop3.o c.pop3
|
||||
|
||||
|
@ -492,6 +492,7 @@ X_OBJS= \
|
||||
$(DIROBJ)\multi.obj \
|
||||
$(DIROBJ)\netrc.obj \
|
||||
$(DIROBJ)\nonblock.obj \
|
||||
$(DIROBJ)\openldap.obj \
|
||||
$(DIROBJ)\parsedate.obj \
|
||||
$(DIROBJ)\pingpong.obj \
|
||||
$(DIROBJ)\polarssl.obj \
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# $VER: LibcURL Makefile for AmigaOS ...
|
||||
# libcurl Makefile for AmigaOS ...
|
||||
#
|
||||
|
||||
# change the follow to where you have the AmiTCP SDK v4.3 includes:
|
||||
@ -24,7 +24,7 @@ OBJS = amigaos.c \
|
||||
strdup.c socks.c ssh.c nss.c qssl.c rawstr.c curl_addrinfo.c \
|
||||
socks_gssapi.c socks_sspi.c curl_sspi.c slist.c nonblock.c \
|
||||
curl_memrchr.c imap.c pop3.c smtp.c pingpong.c rtsp.c curl_threads.c \
|
||||
warnless.c hmac.c polarssl.c curl_rtmp.c
|
||||
warnless.c hmac.c polarssl.c curl_rtmp.c openldap.c
|
||||
|
||||
all: $(OBJS:.c=.o)
|
||||
ar cru libcurl.a $(OBJS:.c=.o)
|
||||
|
@ -34,7 +34,7 @@ SOURCE \
|
||||
strdup.c socks.c ssh.c nss.c qssl.c rawstr.c curl_addrinfo.c \
|
||||
socks_gssapi.c socks_sspi.c curl_sspi.c slist.c nonblock.c \
|
||||
curl_memrchr.c imap.c pop3.c smtp.c pingpong.c rtsp.c warnless.c \
|
||||
curl_threads.c hmac.c polarssl.c curl_rtmp.c
|
||||
curl_threads.c hmac.c polarssl.c curl_rtmp.c openldap.c
|
||||
|
||||
USERINCLUDE ../../../lib ../../../include/curl
|
||||
#ifdef ENABLE_SSL
|
||||
|
@ -38,6 +38,7 @@ C_SRC += curl_addrinfo.c
|
||||
C_SRC += curl_fnmatch.c
|
||||
C_SRC += curl_memrchr.c
|
||||
C_SRC += curl_rand.c
|
||||
C_SRC += curl_rtmp.c
|
||||
C_SRC += curl_sspi.c
|
||||
C_SRC += curl_threads.c
|
||||
C_SRC += dict.c
|
||||
@ -80,8 +81,10 @@ C_SRC += multi.c
|
||||
C_SRC += netrc.c
|
||||
C_SRC += nonblock.c
|
||||
C_SRC += nss.c
|
||||
C_SRC += openldap.c
|
||||
C_SRC += parsedate.c
|
||||
C_SRC += pingpong.c
|
||||
C_SRC += polarssl.c
|
||||
C_SRC += pop3.c
|
||||
C_SRC += progress.c
|
||||
C_SRC += qssl.c
|
||||
|
Loading…
Reference in New Issue
Block a user