nRF24-key/code/makefile

175 lines
4.9 KiB
Makefile

# Name of the project
PROJ_NAME = nRF_USB
######################################################################
# SOURCES #
######################################################################
## Directories ##
# This is where the source files are located,
# which are not in the current directory
SRC_DIR = ./src
# The header files we use are located here
INC_DIR = ./src
INC_DIR += .
BUILD_DIR = build
OUTPUT_DIR = output
## FILES ##
# c files
SRCS = main.cpp
SRCS += nRF24L01.cpp
SRCS += UART.cpp
# asm files
# S maiuscola! Invoca prima il compilatore gcc che interpreta macro e altro
# ASRC = main.S
# header files
# Specify here libraries! Makefile will check existance before launching
# DEPS = foo.h
# Object files
# Automatically declares object file names
OBJS = $(patsubst %.c, $(BUILD_DIR)/%.o, $(filter %.c,$(SRCS)) )
OBJS += $(patsubst %.cpp, $(BUILD_DIR)/%.cpp.o, $(filter %.cpp,$(SRCS)) )
OBJS += $(patsubst %.s, $(BUILD_DIR)/%.s.o, $(filter %.s,$(ASRC)) )
OBJS += $(patsubst %.S, $(BUILD_DIR)/%.S.o, $(filter %.S,$(ASRC)) )
# Virtual Paths
# Tell make to look in that folder if it cannot find a source
# in the current directory
vpath %.c $(SRC_DIR)
vpath %.cpp $(SRC_DIR)
vpath %.S $(SRC_DIR)
vpath %.h $(INC_DIR)
######################################################################
# SETUP TOOLS #
######################################################################
# GCC/programming Tools
CC = avr-gcc
CXX = avr-g++
OBJCOPY = avr-objcopy
OBJDUMP = avr-objdump
GDB = avr-gdb
AS = avr-as
SIZE = avr-size
AVRDUDE = avrdude
# Microcontroller
MCU = attiny2313
F_CPU = 8000000
# Fuses -- http://www.engbedded.com/fusecalc/
LFUSE = 0xdc
HFUSE = 0x9f
EFUSE = 0xff
### GCC options ###
## Compiler flags ##
# Do not run the linker
CFLAGS = -c
# Debug informations
CFLAGS += -g
# Auto optimisation
CFLAGS += -Os
# All warning messages
CFLAGS += -Wall
# Puts functions and data into its own section - remove thread-safe things
CFLAGS += -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics
# Microcontroller
CFLAGS += -mmcu=$(MCU)
# Clock speed
CFLAGS += -DF_CPU=$(F_CPU)L
# Header files
CFLAGS += $(addprefix -I,$(INC_DIR))
## CXX flags are the same as CC ones here!
CXXFLAGS = $(CFLAGS)
# Linker flags
LFLAGS = -mmcu=$(MCU)
LFLAGS += $(addprefix -I,$(INC_DIR))
######################################################################
# PROGRAMMING TOOLS #
######################################################################
# To match MCU with BOARD, see link
# http://www.nongnu.org/avr-libc/user-manual/using_tools.html
PROGRAMMER = usbasp
# verbose
PROGRAM_FLAGS = -v
# choose programmer
PROGRAM_FLAGS += -c $(PROGRAMMER)
# target cpu
PROGRAM_FLAGS += -p $(MCU)
######################################################################
# TARGETS #
######################################################################
.PHONY: clean
all: $(OUTPUT_DIR)/$(PROJ_NAME).hex
# invokes CC compiler before assemblying
$(BUILD_DIR)/%.S.o : %.S $(DEPS)
@echo -e "\033[1;33m[Assembling ]\033[0m $^"
@mkdir -p ${BUILD_DIR}
$(CC) $(CFLAGS) $< -o $@
# pure asm
$(BUILD_DIR)/%.s.o : %.s $(DEPS)
@echo -e "\033[1;33m[Assembling ]\033[0m $^"
@mkdir -p ${BUILD_DIR}
$(CC) $(CFLAGS) $< -o $@
# .cxx files
$(BUILD_DIR)/%.cpp.o: %.cpp $(DEPS)
@echo -e "\033[1;33m[Compiling ]\033[0m $^"
@mkdir -p ${BUILD_DIR}
$(CXX) $(CXXFLAGS) $< -o $@
# .c files
$(BUILD_DIR)/%.o: %.c $(DEPS)
@echo -e "\033[1;33m[Compiling ]\033[0m $^"
@mkdir -p ${BUILD_DIR}
$(CC) $(CFLAGS) $< -o $@
$(OUTPUT_DIR)/$(PROJ_NAME).elf: $(OBJS)
@echo -e "\033[1;33m[Linking ]\033[0m $@"
@mkdir -p ${OUTPUT_DIR}
$(CC) $(LFLAGS) -o $@ $(foreach file, $^, $(file)) -lm
@echo -e "\033[1;33m[Disasm... ]\033[0m $^"
$(OBJDUMP) -h -S $@ > $(OUTPUT_DIR)/$(PROJ_NAME).lss
$(OUTPUT_DIR)/$(PROJ_NAME).hex: $(OUTPUT_DIR)/$(PROJ_NAME).elf
@echo -e "\033[1;33m[Binary ]\033[0m $^"
$(OBJCOPY) -O ihex -R .eeprom $^ $@
size: $(OUTPUT_DIR)/$(PROJ_NAME).elf
$(SIZE) -C --mcu=$(MCU) $(OUTPUT_DIR)/$(PROJ_NAME).elf
flash: $(OUTPUT_DIR)/$(PROJ_NAME).hex
$(AVRDUDE) $(PROGRAM_FLAGS) -U flash:w:$(OUTPUT_DIR)/$(PROJ_NAME).hex
fuse: $(OUTPUT_DIR)/$(PROJ_NAME).hex
$(AVRDUDE) $(PROGRAM_FLAGS) -U lfuse:w:$(LFUSE):m -U hfuse:w:$(HFUSE):m -U efuse:w:$(EFUSE):m
eeprom: eeprom-vanilla.hex
$(AVRDUDE) $(PROGRAM_FLAGS) -U hfuse:w:0xdf:m
$(AVRDUDE) $(PROGRAM_FLAGS) -e -U eeprom:w:$^:i
$(AVRDUDE) $(PROGRAM_FLAGS) -U hfuse:w:$(HFUSE):m
test:
$(AVRDUDE) $(PROGRAM_FLAGS)
clean:
@echo -e "\033[1;33m[Cleaning ]\033[0m"
@rm -f $(BUILD_DIR)/*
@rm -f $(OUTPUT_DIR)/*