makefile.amiga 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # $VER: LibcURL Makefile for AmigaOS ...
  3. #
  4. # change the follow to where you have the AmiTCP SDK v4.3 includes:
  5. ATCPSDKI= /GG/netinclude
  6. CC = m68k-amigaos-gcc
  7. CFLAGS = -I$(ATCPSDKI) -m68020-60 -O2 -msoft-float -noixemul -g -I. -I../include -W -Wall
  8. OBJS = amigaos.c \
  9. file.c timeval.c base64.c hostip.c progress.c formdata.c \
  10. cookie.c http.c sendf.c ftp.c url.c dict.c if2ip.c speedcheck.c \
  11. ldap.c ssluse.c version.c getenv.c escape.c mprintf.c telnet.c \
  12. netrc.c getinfo.c transfer.c strequal.c easy.c security.c krb4.c \
  13. krb5.c memdebug.c http_chunks.c strtok.c connect.c llist.c hash.c \
  14. multi.c content_encoding.c share.c http_digest.c md5.c curl_rand.c \
  15. http_negotiate.c http_ntlm.c inet_pton.c strtoofft.c strerror.c \
  16. hostares.c hostasyn.c hostip4.c hostip6.c hostsyn.c hostthre.c \
  17. inet_ntop.c parsedate.c select.c gtls.c sslgen.c tftp.c splay.c \
  18. strdup.c socks.c ssh.c nss.c qssl.c rawstr.c curl_addrinfo.c \
  19. socks_gssapi.c socks_sspi.c curl_sspi.c slist.c nonblock.c \
  20. curl_memrchr.c imap.c pop3.c smtp.c pingpong.c rtsp.c curl_threads.c
  21. all: $(OBJS:.c=.o)
  22. ar cru libcurl.a $(OBJS:.c=.o)
  23. ranlib libcurl.a
  24. install:
  25. $(INSTALL) -c ./libcurl.a /lib/libcurl.a