You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
405 B
21 lines
405 B
# |
|
# 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
|
|
|