mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
Diego Casorran's amiga makefiles
This commit is contained in:
parent
29d3deaee8
commit
4d8a53da2f
27
lib/makefile.amiga
Normal file
27
lib/makefile.amiga
Normal file
@ -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
|
22
src/makefile.amiga
Normal file
22
src/makefile.amiga
Normal file
@ -0,0 +1,22 @@
|
||||
#
|
||||
# $VER: cURL 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
|
||||
LIBS = ../lib/libcurl.a -lsslnix -lcryptonix -lz
|
||||
|
||||
OBJS = getpass.c homedir.c hugehelp.c main.c urlglob.c writeenv.c writeout.c
|
||||
|
||||
|
||||
all: $(OBJS:.c=.o)
|
||||
$(CC) $(CFLAGS) -s -o cURL $(OBJS:.c=.o) $(LIBS)
|
||||
|
||||
install:
|
||||
$(INSTALL) -c cURL /c/cURL
|
||||
|
Loading…
Reference in New Issue
Block a user