File: makefile.amiga

package info (click to toggle)
curl 7.15.5-1etch3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 9,400 kB
  • ctags: 5,904
  • sloc: ansic: 47,247; sh: 9,209; perl: 3,486; makefile: 630; cpp: 178; awk: 40; lisp: 33
file content (27 lines) | stat: -rwxr-xr-x 911 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# $VER: LibcURL Makefile for AmigaOS ...
#

# change the follow to where you have the AmiTCP SDK v4.3 includes:

ATCPSDKI=	/GG/netinclude


CC	=	m68k-amigaos-gcc
CFLAGS	=	-I$(ATCPSDKI) -m68020-60 -O2 -msoft-float -noixemul -g -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 getenv.c getinfo.c hash.c hostip.c   \
	hostip4.c hostsyn.c http.c http_chunks.c http_digest.c		      \
	http_negotiate.c http_ntlm.c if2ip.c inet_ntop.c inet_pton.c krb4.c   \
	ldap.c llist.c md5.c memdebug.c mprintf.c multi.c netrc.c parsedate.c \
	progress.c security.c select.c sendf.c share.c speedcheck.c ssluse.c  \
	strequal.c strtok.c telnet.c timeval.c transfer.c url.c version.c \
	sslgen.c gtls.c strerror.c

all:	$(OBJS:.c=.o)
	ar cru libcurl.a $(OBJS:.c=.o)
	ranlib libcurl.a

install:
	$(INSTALL) -c ./libcurl.a /lib/libcurl.a