macsehw/firmware/rtc/Makefile
Andrew Makousky 1e91a8b426 Finally feature-complete code for ATTiny85 RTC.
The code compiles, but there is NO GUARANTEE it is actually functional.
The code still needs to be tested and could use a bit of careful reading
code review to certify that it does not contain errors.
2020-09-04 22:49:17 -05:00

11 lines
222 B
Makefile

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