11 lines
123 B
Makefile
11 lines
123 B
Makefile
# Set the frequency of the CPU (in Hz)
|
|
F_CPU = 16000000UL
|
|
|
|
all: hex flash
|
|
|
|
hex:
|
|
|
|
flash:
|
|
|
|
clean:
|
|
rm -f main.hex main.bin
|