mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 08:35:05 -05:00
b801b453af
- replace tabs with spaces where possible - remove line ending spaces - remove double/triple newlines at EOF - fix a non-UTF-8 character - cleanup a few indentations/line continuations in manual examples Closes https://github.com/curl/curl/pull/3037
22 lines
405 B
Plaintext
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
|