mirror of
https://github.com/moparisthebest/curl
synced 2024-11-12 12:35:04 -05:00
30 lines
671 B
Plaintext
30 lines
671 B
Plaintext
#
|
|
# $VER: cURL Makefile for AmigaOS ...
|
|
#
|
|
|
|
# change the follow to where you have the AmiTCP SDK v4.3 includes:
|
|
|
|
ATCPSDKI= /GG/netinclude
|
|
|
|
|
|
CC = gcc
|
|
CFLAGS = -I$(ATCPSDKI) -m68020-60 -noixemul -I. -I../include -W -Wall
|
|
LIBS = ../lib/libcurl.a -lsslnix -lcryptonix -lz
|
|
MANPAGE = ../docs/curl.1
|
|
README = ../docs/MANUAL
|
|
MKHELP = ../src/mkhelp.pl
|
|
|
|
OBJS = getpass.c hugehelp.c main.c urlglob.c writeenv.c writeout.c
|
|
|
|
|
|
all: hugehelp.c $(OBJS:.c=.o)
|
|
$(CC) $(CFLAGS) -s -o cURL $(OBJS:.c=.o) $(LIBS)
|
|
|
|
hugehelp.c: $(README) $(MANPAGE) mkhelp.pl
|
|
rm -f hugehelp.c
|
|
/bin/nroff -man $(MANPAGE) | /bin/perl $(MKHELP) -c $(README) > hugehelp.c
|
|
|
|
install:
|
|
$(INSTALL) -c cURL /c/cURL
|
|
|