makefile.amiga 911 B

123456789101112131415161718192021222324252627
  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 base64.c connect.c content_encoding.c cookie.c dict.c easy.c \
  9. escape.c file.c formdata.c ftp.c getenv.c getinfo.c hash.c hostip.c \
  10. hostip4.c hostsyn.c http.c http_chunks.c http_digest.c \
  11. http_negotiate.c http_ntlm.c if2ip.c inet_ntop.c inet_pton.c krb4.c \
  12. ldap.c llist.c md5.c memdebug.c mprintf.c multi.c netrc.c parsedate.c \
  13. progress.c security.c select.c sendf.c share.c speedcheck.c ssluse.c \
  14. strequal.c strtok.c telnet.c timeval.c transfer.c url.c version.c \
  15. sslgen.c gtls.c strerror.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