Subversion Repositories EDIS_Ignition

Rev

Rev 13 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13 Rev 18
Line 1... Line 1...
1
##########################################################################################################################
1
##########################################################################################################################
2
# File automatically-generated by tool: [projectgenerator] version: [3.16.0] date: [Sat May 27 15:15:14 BST 2023] 
2
# File automatically-generated by tool: [projectgenerator] version: [4.1.0] date: [Sat Aug 12 14:49:41 BST 2023] 
3
##########################################################################################################################
3
##########################################################################################################################
4
 
4
 
5
# ------------------------------------------------
5
# ------------------------------------------------
6
# Generic Makefile (based on gcc)
6
# Generic Makefile (based on gcc)
7
#
7
#
Line 18... Line 18...
18
 
18
 
19
######################################
19
######################################
20
# building variables
20
# building variables
21
######################################
21
######################################
22
# debug build?
22
# debug build?
23
DEBUG = 1
23
DEBUG = 0
24
# optimization
24
# optimization
25
OPT = -Og
25
OPT = -Os
26
 
26
 
27
#######################################
27
#######################################
28
# paths
28
# paths
29
#######################################
29
#######################################
30
# Build path
30
# Build path
Line 99... Line 99...
99
# fpu
99
# fpu
100
# NONE for Cortex-M0/M0+/M3
100
# NONE for Cortex-M0/M0+/M3
101
 
101
 
102
# float-abi
102
# float-abi
103
 
103
 
104
 
-
 
105
# mcu
104
# mcu
106
MCU = $(CPU) -mthumb $(FPU) $(FLOAT-ABI)
105
MCU = $(CPU) -mthumb $(FPU) $(FLOAT-ABI)
107
 
106
 
108
# macros for gcc
107
# macros for gcc
109
# AS defines
108
# AS defines
Line 178... Line 177...
178
 
177
 
179
#######################################
178
#######################################
180
# LDFLAGS
179
# LDFLAGS
181
#######################################
180
#######################################
182
# link script
181
# link script
183
LDSCRIPT = STM32F103C8Tx_FLASH.ld
182
LDSCRIPT = STM32F103C6Tx_FLASH.ld
184
 
183
 
185
# libraries
184
# libraries
186
LIBS = -lc -lm -lnosys 
185
LIBS = -lc -lm -lnosys 
187
LIBDIR = 
186
LIBDIR = 
188
LDFLAGS = $(MCU) -specs=nano.specs -T$(LDSCRIPT) $(LIBDIR) $(LIBS) -Wl,-Map=$(BUILD_DIR)/$(TARGET).map,--cref -Wl,--gc-sections
187
LDFLAGS = $(MCU) -specs=nano.specs -T$(LDSCRIPT) $(LIBDIR) $(LIBS) -Wl,-Map=$(BUILD_DIR)/$(TARGET).map,--cref -Wl,--gc-sections