r5sdk/r5dev/thirdparty/curl/makefile.amiga
Kawe Mazidjatari 387b24875b Downgrade 'libcurl' to 7.54.0
The game uses 7.54.0, downgraded to maintain compatibility if we ever hook curl functions.
2023-03-28 23:14:26 +02:00

22 lines
405 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
OBJS = $(CSOURCES:.c=.o)
all: $(OBJS)
ar cru libcurl.a $(OBJS)
ranlib libcurl.a
install:
$(INSTALL) -c ./libcurl.a /lib/libcurl.a