macsehw/firmware/rtc/Makefile
Andrew Makousky 2bce9ed244 Finished test bench implementation, fixed firmware bugs found during
simulation, document technical limits.
2020-09-10 05:07:27 -05:00

11 lines
218 B
Makefile

all: Mac128kRTC.axf MacPlusRTC.axf
Mac128kRTC.axf: MacRTC.c
avr-gcc -o $@ -Os -mmcu=attiny85 -DNoXPRAM=1 $<
MacPlusRTC.axf: MacRTC.c
avr-gcc -o $@ -Os -mmcu=attiny85 $<
clean:
rm -f Mac128kRTC.axf MacPlusRTC.axf