12 lines
192 B
Makefile
12 lines
192 B
Makefile
all:
|
|
make build
|
|
make program
|
|
|
|
build:
|
|
avr-gcc main.c -o magic.hex -mmcu=attiny84a -Wall -Wextra -Os
|
|
|
|
program:
|
|
avrdude -p attiny84 -c usbtiny -U flash:w:magic.hex
|
|
|
|
.PHONY: all build program
|