Commit 3b24076c authored by Yang Tse's avatar Yang Tse
Browse files

add missing new files to non-configure target build files

parent 077125e4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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\)
+11 −3
Original line number Diff line number Diff line
# 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

+1 −0
Original line number Diff line number Diff line
@@ -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 \
+2 −2
Original line number Diff line number Diff line
#
# $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)
+1 −1
Original line number Diff line number Diff line
@@ -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
Loading