2020-03-23 16:44:29 +03:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
|
|
|
# Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2020-11-04 16:02:01 +03:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2020-03-23 16:44:29 +03:00
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
2022-05-17 12:16:50 +03:00
|
|
|
#
|
2020-03-23 16:44:29 +03:00
|
|
|
###########################################################################
|
2003-12-10 16:54:57 +03:00
|
|
|
#
|
2010-06-02 17:09:39 +04:00
|
|
|
# libcurl Makefile for AmigaOS ...
|
2003-12-10 16:54:57 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# change the follow to where you have the AmiTCP SDK v4.3 includes:
|
|
|
|
|
2018-09-24 01:24:02 +03:00
|
|
|
ATCPSDKI= /GG/netinclude
|
2003-12-10 16:54:57 +03:00
|
|
|
|
|
|
|
|
2018-09-24 01:24:02 +03:00
|
|
|
CC = m68k-amigaos-gcc
|
2022-10-18 21:22:41 +03:00
|
|
|
CFLAGS = -I$(ATCPSDKI) -m68020-60 -O2 -msoft-float -noixemul -g -I. -I../include -W -Wall -DUSE_OPENSSL -DHAVE_LIBZ
|
2003-12-10 16:54:57 +03:00
|
|
|
|
2010-06-08 01:00:16 +04:00
|
|
|
include Makefile.inc
|
|
|
|
OBJS = $(CSOURCES:.c=.o)
|
2005-04-08 00:56:04 +04:00
|
|
|
|
2018-09-24 01:24:02 +03:00
|
|
|
all: $(OBJS)
|
2010-06-08 01:00:16 +04:00
|
|
|
ar cru libcurl.a $(OBJS)
|
2003-12-10 16:54:57 +03:00
|
|
|
ranlib libcurl.a
|
|
|
|
|
|
|
|
install:
|
|
|
|
$(INSTALL) -c ./libcurl.a /lib/libcurl.a
|