add spl, first tries programming
This commit is contained in:
66
firmware/SDCC/Makefile
Normal file
66
firmware/SDCC/Makefile
Normal file
@@ -0,0 +1,66 @@
|
||||
#######
|
||||
# makefile for STM8*_StdPeriph_Lib and SDCC compiler
|
||||
#
|
||||
# note: paths in this Makefile assume unmodified SPL folder structure
|
||||
#
|
||||
# usage:
|
||||
# 1. if SDCC not in PATH set path -> CC_ROOT
|
||||
# 2. set correct STM8 device -> DEVICE
|
||||
# 3. set project paths -> PRJ_ROOT, PRJ_SRC_DIR, PRJ_INC_DIR
|
||||
# 4. set SPL paths -> SPL_ROOT
|
||||
# 5. add required SPL modules -> SPL_SOURCE
|
||||
# 6. add required STM8_EVAL modules -> EVAL_SOURCE, EVAL_COMM_SOURCE, EVAL_STM8L1526_SOURCE, EVAL_STM8L1528_SOURCE
|
||||
#
|
||||
#######
|
||||
|
||||
# STM8 device (for supported devices see stm8l15x.h)
|
||||
DEVICE=STM8L15X_LD
|
||||
|
||||
# set compiler path & parameters
|
||||
CC_ROOT =
|
||||
CC = sdcc
|
||||
CFLAGS = -out-fmt-ihx -mstm8 -lstm8 --opt-code-size --stack-auto
|
||||
|
||||
# set output folder and target name
|
||||
OUTPUT_DIR = ../$(DEVICE)
|
||||
TARGET = $(OUTPUT_DIR)/$(DEVICE).hex
|
||||
|
||||
# set project folder and files (all *.c)
|
||||
PRJ_ROOT = ..
|
||||
PRJ_SRC_DIR = $(PRJ_ROOT)/src
|
||||
PRJ_INC_DIR = $(PRJ_ROOT)/inc
|
||||
PRJ_SOURCE = $(notdir $(wildcard $(PRJ_SRC_DIR)/*.c))
|
||||
PRJ_OBJECTS := $(addprefix $(OUTPUT_DIR)/, $(PRJ_SOURCE:.c=.rel))
|
||||
|
||||
# set SPL paths
|
||||
SPL_ROOT = $(PRJ_INC_DIR)/stm8l151x
|
||||
SPL_SRC_DIR = $(SPL_ROOT)/src
|
||||
SPL_INC_DIR = $(SPL_ROOT)/inc
|
||||
SPL_SOURCE = stm8l15x_usart.c stm8l15x_clk.c stm8l15x_gpio.c stm8l15x_rtc.c #$(notdir $(wildcard $(SPL_SRC_DIR)/*.c))
|
||||
SPL_OBJECTS := $(addprefix $(OUTPUT_DIR)/, $(SPL_SOURCE:.c=.rel))
|
||||
|
||||
# collect all include folders
|
||||
INCLUDE = -I$(PRJ_INC_DIR) -I$(SPL_INC_DIR)
|
||||
|
||||
# collect all source directories
|
||||
VPATH=$(PRJ_SRC_DIR):$(SPL_SRC_DIR)
|
||||
|
||||
.PHONY: clean
|
||||
|
||||
all: $(OUTPUT_DIR) $(TARGET)
|
||||
|
||||
$(OUTPUT_DIR):
|
||||
mkdir -p $(OUTPUT_DIR)
|
||||
|
||||
$(OUTPUT_DIR)/%.rel: %.c
|
||||
$(CC) $(CFLAGS) $(INCLUDE) -D$(DEVICE) -c $?
|
||||
|
||||
$(OUTPUT_DIR)/%.rel: %.c
|
||||
$(CC) $(CFLAGS) $(INCLUDE) -D$(DEVICE) -c $? -o $@
|
||||
|
||||
$(TARGET): $(PRJ_OBJECTS) $(SPL_OBJECTS) $(EVAL_OBJECTS) $(EVAL_COMM_OBJECTS) $(EVAL_STM8L1526_OBJECTS) $(EVAL_STM8L1528_OBJECTS)
|
||||
$(CC) $(CFLAGS) -o $(TARGET) $^
|
||||
|
||||
clean:
|
||||
rm -fr $(OUTPUT_DIR)
|
||||
|
||||
Reference in New Issue
Block a user