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

all: Bewegungsmelder.hex

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

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

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

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

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