inv-sw-32u4/Makefile

24 lines
534 B
Makefile
Raw Normal View History

2021-12-02 20:57:19 +00:00
TARGETNAME = togglePin
BUILDFOLDER = ./build/
TARGET = $(BUILDFOLDER)$(TARGETNAME)
INC = -Isrc/include -I/usr/lib/avr/include/
CFLAGS = -Wall -Wpedantic -Wextra -g -Os -mmcu=atmega328p
CPPFLAGS = -DF_CPU=16000000UL
2021-12-02 20:57:19 +00:00
SRC = $(wildcard src/*.c)
all: $(TARGET)
$(TARGET): $(SRC)
mkdir -p build
avr-gcc -o $@.elf $^ $(CPPFLAGS) $(CFLAGS) $(INC)
2021-12-02 20:57:19 +00:00
avr-objcopy -j .text -j .data -O ihex $@.elf $@.hex
rm $@.elf
flash:
avrdude -p m328p -P /dev/ttyUSB0 -c arduino -b 57600 -Uflash:w:"$(TARGET).hex":i
2021-12-02 20:57:19 +00:00
clean:
rm -fr ./src/*.o ./build/