avr_piano/Makefile

24 lines
512 B
Makefile
Raw Normal View History

CC = avr-gcc
CFLAGS = -O2 -Wall -Wextra -Werror -mmcu=atmega328p
OBJCOPY = avr-objcopy
PORT ?= /dev/ttyACM0
2024-04-17 13:59:33 -04:00
all: notes lcd
notes:
2024-04-17 14:07:35 -04:00
${CC} ${CFLAGS} notes.c
${OBJCOPY} -j .text -j .data -O ihex a.out notes.hex
2024-04-17 13:59:33 -04:00
rm -f a.out
flash_notes: notes
2024-04-17 14:07:35 -04:00
avrdude -p atmega328p -c arduino -P ${PORT} -b 115200 -U flash:w:notes.hex:i
2024-04-17 13:59:33 -04:00
lcd:
2024-04-17 14:07:35 -04:00
${CC} ${CFLAGS} lcd.c
${OBJCOPY} -j .text -j .data -O ihex a.out lcd.hex
rm -f a.out
2024-04-17 13:59:33 -04:00
flash_lcd: notes
2024-04-17 14:07:35 -04:00
avrdude -p atmega328p -c arduino -P ${PORT} -b 115200 -U flash:w:lcd.hex:i