aboutsummaryrefslogtreecommitdiff
path: root/src/makefile.amiga
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-12-10 13:54:57 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-12-10 13:54:57 +0000
commit4d8a53da2f56d1a117c197bbebade00c68e827b5 (patch)
tree6eaf053e6465991afd803ae038884bc5cfd73f20 /src/makefile.amiga
parent29d3deaee84bbd4944a8318d5f3867cf9a6df140 (diff)
Diego Casorran's amiga makefiles
Diffstat (limited to 'src/makefile.amiga')
-rw-r--r--src/makefile.amiga22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/makefile.amiga b/src/makefile.amiga
new file mode 100644
index 000000000..ea303508d
--- /dev/null
+++ b/src/makefile.amiga
@@ -0,0 +1,22 @@
+#
+# $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
+
+OBJS = getpass.c homedir.c hugehelp.c main.c urlglob.c writeenv.c writeout.c
+
+
+all: $(OBJS:.c=.o)
+ $(CC) $(CFLAGS) -s -o cURL $(OBJS:.c=.o) $(LIBS)
+
+install:
+ $(INSTALL) -c cURL /c/cURL
+