diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-12-10 13:54:57 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-12-10 13:54:57 +0000 |
commit | 4d8a53da2f56d1a117c197bbebade00c68e827b5 (patch) | |
tree | 6eaf053e6465991afd803ae038884bc5cfd73f20 /lib | |
parent | 29d3deaee84bbd4944a8318d5f3867cf9a6df140 (diff) |
Diego Casorran's amiga makefiles
Diffstat (limited to 'lib')
-rw-r--r-- | lib/makefile.amiga | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/makefile.amiga b/lib/makefile.amiga new file mode 100644 index 000000000..cb7822729 --- /dev/null +++ b/lib/makefile.amiga @@ -0,0 +1,27 @@ +# +# $VER: LibcURL Makefile for AmigaOS ... +# + +# change the follow to where you have the AmiTCP SDK v4.3 includes: + +ATCPSDKI= /GG/netinclude + + +CC = gcc +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 + +all: $(OBJS:.c=.o) + ar cru libcurl.a $(OBJS:.c=.o) + ranlib libcurl.a + +install: + $(INSTALL) -c ./libcurl.a /lib/libcurl.a |