summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3f0732f..a44356e 100644
--- a/Makefile
+++ b/Makefile
@@ -31,11 +31,13 @@ love: kbc.flash kbc.eeprom
31 $(ACC) $(ACFLAGS) -c -o $@ $< 31 $(ACC) $(ACFLAGS) -c -o $@ $<
32 32
33flash: kbc.flash 33flash: kbc.flash
34 $(AVRDUDE) -y -p m48 -E noreset -U $^ 34 $(AVRDUDE) -y -p m48 -E noreset -U flash:w:$<:r
35eeprom: kbc.eeprom
36 $(AVRDUDE) -y -p m48 -E noreset -U eeprom:w:$<:r
35 37
36clean: 38clean:
37 rm -f *.flash *.eeprom *.o 39 rm -f *.flash *.eeprom *.o
38 40
39.PHONY: love flash clean 41.PHONY: love flash eeprom clean
40.SECONDARY: 42.SECONDARY:
41 43