emailler/ip65/Makefile
Oliver Schmidt e06c02e4a3 1. Replaced IP65 Ethernet drivers with Contiki drivers.
* CS8900A
The Contiki driver allows to adjust the chip base addr at runtime (which  allows to support different slots in the Apple II) and removes received frames from the chip if there's no room to send frames.

* LAN91C96
The Contiki driver was used by IP65 more or less unchanged in the first place.

* W5100
The Contiki driver allows to adjust the chip base addr at runtime (which  allows to support different slots in the Apple II) and stays clear from the W5100 hybrid mode. It presumes a fully functional W5100 register auto-increment and pre-calculates necessary W5100 frame buffer wrap-arounds and thus achieves the maximal 6502 <-> W5100 transfer speed.
2014-06-13 00:00:53 +02:00

46 lines
593 B
Makefile

# ip65.lib : minimal IP stack (UDP only)
# ip65_tcp.lib : full featured TCP/IP stack
all: ip65.lib ip65_tcp.lib
%.o: %.s
ca65 $<
%_tcp.o: %.s
ca65 -DTCP -o $@ $<
IP65OBJS=\
arithmetic.o\
arp.o \
cifs.o \
config.o \
copymem.o \
debug.o \
dhcp.o \
dns.o \
dottedquad.o \
eth.o \
http.o \
httpd.o \
ip65.o \
tftp.o \
timer.o \
output_buffer.o\
parser.o \
printf.o \
sntp.o \
string_utils.o \
telnet.o \
udp.o \
url.o
ip65.lib: $(IP65OBJS) ip.o icmp.o
ar65 a $@ $^
ip65_tcp.lib: $(IP65OBJS) ip_tcp.o icmp_tcp.o tcp.o
ar65 a $@ $^
clean:
-rm -f *.o
-rm -f *.lib