summaryrefslogtreecommitdiff
path: root/Makefile
blob: dc800c365ff9f6312fa387b2919d0b55bb01d293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

all: Binaeruhr.hex

install: all
	avrdude -c avrispmkII -p t24 -U flash:w:Binaeruhr.hex:i

check:
	avrdude -c avrispmkII -p t24 -U flash:v:Binaeruhr.hex:i

%.o: %.asm *.inc
	avr-as $< -mmcu=attiny2313 -o $@

%.elf: %.o
	avr-ld -o $@ $<

%.hex: %.elf
	avr-objcopy --output-target=ihex $< $@