mirror of
https://github.com/bobbimanners/emailler.git
synced 2025-01-12 16:29:55 +00:00
44 lines
391 B
Makefile
44 lines
391 B
Makefile
|
AS=ca65
|
||
|
LD=ld65
|
||
|
AFLAGS=
|
||
|
|
||
|
|
||
|
%.o: %.c
|
||
|
$(CC) -c $(CFLAGS) $<
|
||
|
|
||
|
%.o: %.s
|
||
|
$(AS) $(AFLAGS) $<
|
||
|
|
||
|
|
||
|
ETHOBJS= \
|
||
|
copymem.o \
|
||
|
config.o \
|
||
|
timer.o \
|
||
|
cs8900a.o \
|
||
|
eth.o \
|
||
|
arp.o \
|
||
|
ip.o \
|
||
|
icmp.o \
|
||
|
udp.o \
|
||
|
ip65.o \
|
||
|
printf.o \
|
||
|
debug.o \
|
||
|
dhcp.o \
|
||
|
dns.o \
|
||
|
tftp.o \
|
||
|
|
||
|
all: ip65.lib
|
||
|
|
||
|
|
||
|
ip65.lib: $(ETHOBJS)
|
||
|
ar65 a ip65.lib $^
|
||
|
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o
|
||
|
rm -f ip65.lib
|
||
|
|
||
|
|
||
|
distclean: clean
|
||
|
rm -f *~
|