You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
378 B
23 lines
378 B
MMCU=atmega32u4
|
|
MMCU_DUDE=m32u4
|
|
|
|
.PHONY: all clean
|
|
|
|
all: flash
|
|
|
|
compile:
|
|
avr-gcc -g -O1 -mmcu=$(MMCU) -c led.c
|
|
|
|
link: compile
|
|
avr-gcc -g -mmcu=$(MMCU) -o led.elf led.o
|
|
|
|
assemble: link
|
|
avr-objcopy -j .text -j .data -O ihex led.elf led.hex
|
|
|
|
flash: assemble
|
|
avrdude -p $(MMCU_DUDE) -c stk500 -P /dev/cu.usbserial-114230 -U flash:w:led.hex:i
|
|
|
|
clean:
|
|
rm *.o
|
|
rm *.elf
|
|
rm *.hex
|
|
|