mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-10-31 22:47:05 +01:00
43 lines
913 B
Makefile
43 lines
913 B
Makefile
# Doorlock AVR - The AVR part of doorlockd
|
|
#
|
|
# Copyright (c) Binary Kitchen e.V., 2018
|
|
#
|
|
# Authors:
|
|
# Ralf Ramsauer <ralf@binary-kitchen.de>
|
|
#
|
|
# This work is licensed under the terms of the GNU GPL, version 2. See
|
|
# the COPYING file in the top-level directory.
|
|
|
|
|
|
TARGET = doorlock
|
|
|
|
MCU ?= attiny2313a
|
|
F_OSC ?= 4000000
|
|
UART_BAUD ?= 9600
|
|
AVRDUDE_MCU ?= t2313
|
|
|
|
OBJS = main.o uart.o
|
|
|
|
CC = avr-gcc
|
|
OBJCOPY = avr-objcopy
|
|
AVRDUDE = avrdude
|
|
|
|
CFLAGS := -g -O2 -mmcu=$(MCU)
|
|
CFLAGS += -Wall -Wextra -Wstrict-prototypes
|
|
CFLAGS += -DF_OSC=$(F_OSC) -DF_CPU=F_OSC -DUART_BAUD=$(UART_BAUD)UL -DMCU=$(MCU)
|
|
|
|
all: $(TARGET).hex
|
|
|
|
$(TARGET).elf: $(OBJS)
|
|
$(CC) $(CFLAGS) -o $(TARGET).elf $^
|
|
|
|
$(TARGET).hex: $(TARGET).elf
|
|
$(OBJCOPY) -O ihex -R .eeprom $^ $@
|
|
|
|
program: $(TARGET).hex
|
|
$(AVRDUDE) -p $(AVRDUDE_MCU) -c linuxspi -P /dev/spidev0.0:/dev/gpiochip0:25 -U flash:w:$^
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|
|
rm -f $(TARGET).elf $(TARGET).hex
|