avr_piano/Makefile
2024-04-17 14:29:49 -04:00

24 lines
527 B
Makefile

CC = avr-gcc
CFLAGS = -O2 -Wall -Wextra -mmcu=atmega328p --param=min-pagesize=0
OBJCOPY = avr-objcopy
PORT ?= /dev/ttyACM0
all: notes lcd
notes:
${CC} ${CFLAGS} notes.c
${OBJCOPY} -j .text -j .data -O ihex a.out notes.hex
rm -f a.out
flash_notes: notes
avrdude -p atmega328p -c arduino -P ${PORT} -b 115200 -U flash:w:notes.hex:i
lcd:
${CC} ${CFLAGS} lcd.c
${OBJCOPY} -j .text -j .data -O ihex a.out lcd.hex
rm -f a.out
flash_lcd: notes
avrdude -p atmega328p -c arduino -P ${PORT} -b 115200 -U flash:w:lcd.hex:i