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

all: Fernbedienung.hex

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

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

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

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

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