Initial commit
This commit is contained in:
51
UnitFirmware/module_rev0/Makefile
Normal file
51
UnitFirmware/module_rev0/Makefile
Normal file
@@ -0,0 +1,51 @@
|
||||
# Source and include
|
||||
BUILD_DIR=build
|
||||
SRCS=$(wildcard src/*.c)
|
||||
OBJS=$(SRCS:%.c=build/%.o)
|
||||
INC=-I ./inc
|
||||
|
||||
# MCU configuration
|
||||
# Set MCU type, clock frequency and programmer
|
||||
MCU=atmega8
|
||||
CLOCK_FREQ=16000000
|
||||
PROG_STR=usbasp
|
||||
|
||||
# Compiler flags
|
||||
CFLAGS=-std=c11 -Wall -Wextra -Werror -mmcu=$(MCU) -DF_CPU=$(CLOCK_FREQ)
|
||||
OPT_FLAGS=-O3 -g -DDEBUG
|
||||
|
||||
# Compiler and utility tools
|
||||
OBJCOPY=avr-objcopy
|
||||
CC=avr-gcc
|
||||
|
||||
# Project configuration
|
||||
PROJ_NAME=sflap_controller_fw
|
||||
PROJ_BLD=$(BUILD_DIR)/$(PROJ_NAME)
|
||||
|
||||
# Rules
|
||||
|
||||
all: $(PROJ_BLD).elf
|
||||
|
||||
$(PROJ_BLD).elf: $(OBJS)
|
||||
$(CC) -o $@ $^ $(INC) $(CFLAGS) $(OPT_FLAGS) $(MCU_FLAGS)
|
||||
$(OBJCOPY) -j .text -j .data -O ihex $@ $(PROJ_BLD).hex
|
||||
$(OBJCOPY) -j .text -j .data -O binary $@ $(PROJ_BLD).bin
|
||||
|
||||
|
||||
build/%.o: %.c
|
||||
mkdir -p build/src
|
||||
$(CC) -c -o $@ $(INC) $(CFLAGS) $(OPT_FLAGS) $(MCU_FLAGS) $<
|
||||
|
||||
release: OPT_FLAGS=-O2 -DNDEBUG
|
||||
release: $(PROJ_BLD).elf
|
||||
|
||||
flash:
|
||||
avrdude -c $(PROG_STR) -p $(MCU) -U flash:w:$(PROJ_BLD).hex:i
|
||||
|
||||
flash-debug:
|
||||
avrdude -c $(PROG_STR) -p $(MCU) -U flash:w:$(PROJ_BLD).elf:e
|
||||
|
||||
clean:
|
||||
rm -rf build
|
||||
|
||||
.PHONY = clean, release, flash, flash-debug
|
||||
Reference in New Issue
Block a user