heptagon-arduino/lcd_hept/Makefile

43 lines
764 B
Makefile
Raw Normal View History

CC = avr-gcc
OBJCOPY = avr-objcopy
AVRDUDE = avrdude
CFLAGS = -Os -DF_CPU=16000000UL -mmcu=atmega328p
2021-01-05 14:48:33 +01:00
SERIAL = /dev/cu.usbmodem141401
2020-12-14 20:27:32 +01:00
ADDR = $(shell heptc -where)/c
2020-12-14 20:22:04 +01:00
TARGET = prog
LIB = arduinolib
MAIN = main
.PHONY: all clean flash
all: $(TARGET).hex
flash: $(TARGET).hex
$(AVRDUDE) -F -V -c arduino -p ATMEGA328P -P $(SERIAL) -b 115200 \
-U flash:w:$<
2020-12-14 20:22:04 +01:00
$(TARGET).hex: $(TARGET)
$(OBJCOPY) -O ihex -R .eeprom $< $@
2020-12-14 20:22:04 +01:00
$(TARGET): $(TARGET).o
2020-12-14 20:22:04 +01:00
$(CC) $(CFLAGS) -o $@ *.o
$(TARGET).o : $(TARGET).c
$(CC) -g $(CFLAGS) -c -I $(ADDR) -I . $(LIB).c $(TARGET)_c/*.c $(MAIN).c
$(TARGET).c:
heptc $(LIB).epi
heptc -target c $(TARGET).ept
clean:
2020-12-14 20:22:04 +01:00
rm -f $(TARGET) $(TARGET).hex $(TARGET).o $(TARGET).log $(TARGET).mls
rm -f *.o *.epci
rm -r $(TARGET)_c