makefile.amiga 830 B

12345678910111213141516171819202122232425262728
  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 = gcc
  7. CFLAGS = -I$(ATCPSDKI) -m68020-60 -noixemul -I. -I../include -W -Wall
  8. OBJS = \
  9. amigaos.c base64.c connect.c content_encoding.c cookie.c dict.c \
  10. easy.c escape.c file.c formdata.c ftp.c getdate.c getenv.c \
  11. getinfo.c hash.c hostip.c http.c http_chunks.c http_digest.c \
  12. http_negotiate.c http_ntlm.c if2ip.c inet_pton.c krb4.c ldap.c \
  13. llist.c md5.c memdebug.c mprintf.c multi.c netrc.c progress.c \
  14. security.c sendf.c share.c speedcheck.c ssluse.c strequal.c \
  15. strtok.c telnet.c timeval.c transfer.c url.c version.c
  16. all: $(OBJS:.c=.o)
  17. ar cru libcurl.a $(OBJS:.c=.o)
  18. ranlib libcurl.a
  19. install:
  20. $(INSTALL) -c ./libcurl.a /lib/libcurl.a