mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
00fdafb0a1
Signed-off-by: Diego Casorran <dcasorran@gmail.com>
23 lines
427 B
Plaintext
23 lines
427 B
Plaintext
#
|
|
# 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
|
|
|
|
include Makefile.inc
|
|
CSOURCES += amigaos.c
|
|
OBJS = $(CSOURCES:.c=.o)
|
|
|
|
all: $(OBJS)
|
|
ar cru libcurl.a $(OBJS)
|
|
ranlib libcurl.a
|
|
|
|
install:
|
|
$(INSTALL) -c ./libcurl.a /lib/libcurl.a
|