parent
c6d22153a9
commit
c7e9670222
@ -0,0 +1,21 @@
|
||||
project(Drivers)
|
||||
|
||||
set(P_SOURCES
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c)
|
||||
|
||||
add_library(${PROJECT_NAME} ${P_SOURCES})
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE ${C_FLAGS})
|
||||
target_compile_definitions(${PROJECT_NAME} PRIVATE ${C_DEFS})
|
||||
|
||||
target_include_directories(${PROJECT_NAME}
|
||||
PUBLIC
|
||||
CMSIS/Device/ST/STM32F0xx/Include
|
||||
CMSIS/Include
|
||||
STM32F0xx_HAL_Driver/Inc
|
||||
)
|
||||
#To create an alias to be used on the main CMAKE.
|
||||
add_library(sub::drivers ALIAS ${PROJECT_NAME})
|
@ -0,0 +1,20 @@
|
||||
project(CSources)
|
||||
|
||||
set (C_INCLUDES
|
||||
../Inc
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include
|
||||
../Drivers/CMSIS/Include)
|
||||
|
||||
set(C_SOURCES
|
||||
main.c
|
||||
stm32f0xx_it.c
|
||||
system_stm32f0xx.c)
|
||||
|
||||
add_library(${PROJECT_NAME} ${C_SOURCES})
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE ${C_FLAGS})
|
||||
target_compile_definitions(${PROJECT_NAME} PRIVATE ${C_DEFS})
|
||||
target_include_directories(${PROJECT_NAME} PUBLIC ${C_INCLUDES})
|
||||
|
||||
#To create an alias to be used on the main CMAKE.
|
||||
add_library(sub::cSources ALIAS ${PROJECT_NAME})
|
@ -1,6 +1,11 @@
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/rebuild_cache.dir
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/edit_cache.dir
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/rebuild_cache.dir
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/edit_cache.dir
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/rebuild_cache.dir
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/edit_cache.dir
|
||||
|
@ -1,91 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include CMakeFiles/assembly_functions.dir/depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include CMakeFiles/assembly_functions.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include CMakeFiles/assembly_functions.dir/flags.make
|
||||
|
||||
CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o: CMakeFiles/assembly_functions.dir/flags.make
|
||||
CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o: ../startup/startup_stm32f042x6.s
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building ASM object CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o"
|
||||
/usr/bin/arm-none-eabi-gcc $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o -c /home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s
|
||||
|
||||
# Object files for target assembly_functions
|
||||
assembly_functions_OBJECTS = \
|
||||
"CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o"
|
||||
|
||||
# External object files for target assembly_functions
|
||||
assembly_functions_EXTERNAL_OBJECTS =
|
||||
|
||||
libassembly_functions.a: CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o
|
||||
libassembly_functions.a: CMakeFiles/assembly_functions.dir/build.make
|
||||
libassembly_functions.a: CMakeFiles/assembly_functions.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking ASM static library libassembly_functions.a"
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/assembly_functions.dir/cmake_clean_target.cmake
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/assembly_functions.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
CMakeFiles/assembly_functions.dir/build: libassembly_functions.a
|
||||
|
||||
.PHONY : CMakeFiles/assembly_functions.dir/build
|
||||
|
||||
CMakeFiles/assembly_functions.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/assembly_functions.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/assembly_functions.dir/clean
|
||||
|
||||
CMakeFiles/assembly_functions.dir/depend:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/DependInfo.cmake --color=$(COLOR)
|
||||
.PHONY : CMakeFiles/assembly_functions.dir/depend
|
||||
|
@ -1,10 +0,0 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o"
|
||||
"libassembly_functions.pdb"
|
||||
"libassembly_functions.a"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang ASM)
|
||||
include(CMakeFiles/assembly_functions.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
@ -1,3 +0,0 @@
|
||||
file(REMOVE_RECURSE
|
||||
"libassembly_functions.a"
|
||||
)
|
@ -1,2 +0,0 @@
|
||||
/usr/bin/arm-none-eabi-ar cr libassembly_functions.a CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o
|
||||
/usr/bin/arm-none-eabi-ranlib libassembly_functions.a
|
@ -1,3 +0,0 @@
|
||||
CMAKE_PROGRESS_1 = 1
|
||||
CMAKE_PROGRESS_2 = 2
|
||||
|
@ -1,2 +1,2 @@
|
||||
/usr/bin/arm-none-eabi-ar qc libc_functions.a CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
|
||||
/usr/bin/arm-none-eabi-ar qc libc_functions.a CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o
|
||||
/usr/bin/arm-none-eabi-ranlib libc_functions.a
|
||||
|
@ -1,9 +1,4 @@
|
||||
CMAKE_PROGRESS_1 = 3
|
||||
CMAKE_PROGRESS_2 = 4
|
||||
CMAKE_PROGRESS_3 = 5
|
||||
CMAKE_PROGRESS_4 = 6
|
||||
CMAKE_PROGRESS_5 = 7
|
||||
CMAKE_PROGRESS_6 = 8
|
||||
CMAKE_PROGRESS_7 = 9
|
||||
CMAKE_PROGRESS_8 = 10
|
||||
CMAKE_PROGRESS_1 = 9
|
||||
CMAKE_PROGRESS_2 = 10
|
||||
CMAKE_PROGRESS_3 = 11
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 11
|
||||
CMAKE_PROGRESS_2 = 12
|
||||
CMAKE_PROGRESS_1 = 12
|
||||
CMAKE_PROGRESS_2 = 13
|
||||
|
||||
|
@ -1 +1 @@
|
||||
14
|
||||
15
|
||||
|
@ -1 +1 @@
|
||||
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/github/KED/bsl/cmakeLowLayer/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/Src/main.c.o -o refOvenTest.out libassembly_functions.a libc_functions.a libcpp_functions.a
|
||||
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/github/KED/bsl/cmakeLowLayer/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/Src/main.c.o -o refOvenTest.out startup/libStartup.a libc_functions.a libcpp_functions.a libc_functions.a Drivers/libDrivers.a
|
||||
|
@ -1,3 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 13
|
||||
CMAKE_PROGRESS_2 = 14
|
||||
CMAKE_PROGRESS_1 = 14
|
||||
CMAKE_PROGRESS_2 = 15
|
||||
|
||||
|
@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl/cmakeLowLayer")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/cmakeLowLayer/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
@ -0,0 +1,158 @@
|
||||
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
|
||||
|
||||
#IncludeRegexScan: ^.*$
|
||||
|
||||
#IncludeRegexComplain: ^$
|
||||
|
||||
#IncludeRegexTransform:
|
||||
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
|
||||
core_cm0.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h
|
||||
system_stm32f0xx.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
|
||||
stdint.h
|
||||
-
|
||||
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
|
||||
stm32f030x6.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h
|
||||
stm32f030x8.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h
|
||||
stm32f031x6.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h
|
||||
stm32f038xx.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h
|
||||
stm32f042x6.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
|
||||
stm32f048xx.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h
|
||||
stm32f051x8.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h
|
||||
stm32f058xx.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h
|
||||
stm32f070x6.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h
|
||||
stm32f070xb.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h
|
||||
stm32f071xb.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h
|
||||
stm32f072xb.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h
|
||||
stm32f078xx.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h
|
||||
stm32f091xc.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h
|
||||
stm32f098xx.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h
|
||||
stm32f030xc.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h
|
||||
stm32f0xx_hal.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h
|
||||
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
|
||||
|
||||
../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
|
||||
../Drivers/CMSIS/Include/cmsis_armclang.h
|
||||
arm_compat.h
|
||||
-
|
||||
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
stdint.h
|
||||
-
|
||||
cmsis_armcc.h
|
||||
../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
cmsis_armclang.h
|
||||
../Drivers/CMSIS/Include/cmsis_armclang.h
|
||||
cmsis_gcc.h
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h
|
||||
cmsis_iccarm.h
|
||||
-
|
||||
cmsis_ccs.h
|
||||
-
|
||||
cmsis_csm.h
|
||||
-
|
||||
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h
|
||||
|
||||
../Drivers/CMSIS/Include/cmsis_iccarm.h
|
||||
iccarm_builtin.h
|
||||
../Drivers/CMSIS/Include/iccarm_builtin.h
|
||||
intrinsics.h
|
||||
-
|
||||
|
||||
../Drivers/CMSIS/Include/cmsis_version.h
|
||||
|
||||
../Drivers/CMSIS/Include/core_cm0.h
|
||||
stdint.h
|
||||
-
|
||||
cmsis_version.h
|
||||
../Drivers/CMSIS/Include/cmsis_version.h
|
||||
cmsis_compiler.h
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
|
||||
stm32f0xx.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
|
||||
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
|
||||
stm32f0xx.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
|
||||
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
|
||||
stm32f0xx.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
|
||||
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
|
||||
stm32f0xx.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
|
||||
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
|
||||
stm32f0xx.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
|
||||
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
|
||||
stm32f0xx.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
|
||||
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
|
||||
stm32f0xx.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
|
||||
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
|
||||
stm32f0xx_ll_exti.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.h
|
||||
stm32_assert.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h
|
||||
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
|
||||
stm32f0xx_ll_gpio.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.h
|
||||
stm32f0xx_ll_bus.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h
|
||||
stm32_assert.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h
|
||||
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
|
||||
stm32f0xx_ll_pwr.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.h
|
||||
stm32f0xx_ll_bus.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h
|
||||
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
|
||||
stm32f0xx_ll_rcc.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h
|
||||
stm32_assert.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h
|
||||
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
|
||||
stm32f0xx_ll_rcc.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h
|
||||
stm32f0xx_ll_utils.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.h
|
||||
stm32f0xx_ll_system.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_system.h
|
||||
stm32_assert.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h
|
||||
|
@ -0,0 +1,43 @@
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
"C"
|
||||
)
|
||||
# The set of files for implicit dependencies of each language:
|
||||
set(CMAKE_DEPENDS_CHECK_C
|
||||
"/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o"
|
||||
"/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o"
|
||||
"/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o"
|
||||
"/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o"
|
||||
"/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o"
|
||||
)
|
||||
set(CMAKE_C_COMPILER_ID "GNU")
|
||||
|
||||
# Preprocessor definitions for this target.
|
||||
set(CMAKE_TARGET_DEFINITIONS_C
|
||||
"DATA_CACHE_ENABLE=0"
|
||||
"HSE_STARTUP_TIMEOUT=100"
|
||||
"HSE_VALUE=8000000"
|
||||
"HSI_VALUE=8000000"
|
||||
"INSTRUCTION_CACHE_ENABLE=0"
|
||||
"LSE_STARTUP_TIMEOUT=5000"
|
||||
"LSE_VALUE=32768"
|
||||
"LSI_VALUE=40000"
|
||||
"PREFETCH_ENABLE=1"
|
||||
"STM32F042x6"
|
||||
"USE_FULL_LL_DRIVER"
|
||||
"VDD_VALUE=3300"
|
||||
)
|
||||
|
||||
# The include file search paths:
|
||||
set(CMAKE_C_TARGET_INCLUDE_PATH
|
||||
"../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
|
||||
"../Drivers/CMSIS/Include"
|
||||
"../Drivers/STM32F0xx_HAL_Driver/Inc"
|
||||
)
|
||||
|
||||
# Targets to which this target links.
|
||||
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
@ -0,0 +1,159 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include Drivers/CMakeFiles/Drivers.dir/depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include Drivers/CMakeFiles/Drivers.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include Drivers/CMakeFiles/Drivers.dir/flags.make
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: Drivers/CMakeFiles/Drivers.dir/flags.make
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: Drivers/CMakeFiles/Drivers.dir/flags.make
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: Drivers/CMakeFiles/Drivers.dir/flags.make
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: Drivers/CMakeFiles/Drivers.dir/flags.make
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: Drivers/CMakeFiles/Drivers.dir/flags.make
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
|
||||
|
||||
# Object files for target Drivers
|
||||
Drivers_OBJECTS = \
|
||||
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" \
|
||||
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" \
|
||||
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" \
|
||||
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" \
|
||||
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o"
|
||||
|
||||
# External object files for target Drivers
|
||||
Drivers_EXTERNAL_OBJECTS =
|
||||
|
||||
Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
|
||||
Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
|
||||
Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
|
||||
Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
|
||||
Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
|
||||
Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/build.make
|
||||
Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking C static library libDrivers.a"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean_target.cmake
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Drivers.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
Drivers/CMakeFiles/Drivers.dir/build: Drivers/libDrivers.a
|
||||
|
||||
.PHONY : Drivers/CMakeFiles/Drivers.dir/build
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/clean:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean.cmake
|
||||
.PHONY : Drivers/CMakeFiles/Drivers.dir/clean
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/depend:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer/Drivers /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake --color=$(COLOR)
|
||||
.PHONY : Drivers/CMakeFiles/Drivers.dir/depend
|
||||
|
@ -0,0 +1,14 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o"
|
||||
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o"
|
||||
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o"
|
||||
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o"
|
||||
"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o"
|
||||
"libDrivers.pdb"
|
||||
"libDrivers.a"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang C)
|
||||
include(CMakeFiles/Drivers.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
@ -0,0 +1,3 @@
|
||||
file(REMOVE_RECURSE
|
||||
"libDrivers.a"
|
||||
)
|
@ -0,0 +1,72 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
|
||||
../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
../Drivers/CMSIS/Include/cmsis_armclang.h
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h
|
||||
../Drivers/CMSIS/Include/cmsis_iccarm.h
|
||||
../Drivers/CMSIS/Include/cmsis_version.h
|
||||
../Drivers/CMSIS/Include/core_cm0.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
|
||||
../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
../Drivers/CMSIS/Include/cmsis_armclang.h
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h
|
||||
../Drivers/CMSIS/Include/cmsis_iccarm.h
|
||||
../Drivers/CMSIS/Include/cmsis_version.h
|
||||
../Drivers/CMSIS/Include/core_cm0.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
|
||||
../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
../Drivers/CMSIS/Include/cmsis_armclang.h
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h
|
||||
../Drivers/CMSIS/Include/cmsis_iccarm.h
|
||||
../Drivers/CMSIS/Include/cmsis_version.h
|
||||
../Drivers/CMSIS/Include/core_cm0.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
|
||||
../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
../Drivers/CMSIS/Include/cmsis_armclang.h
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h
|
||||
../Drivers/CMSIS/Include/cmsis_iccarm.h
|
||||
../Drivers/CMSIS/Include/cmsis_version.h
|
||||
../Drivers/CMSIS/Include/core_cm0.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
|
||||
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
|
||||
../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
../Drivers/CMSIS/Include/cmsis_armclang.h
|
||||
../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
../Drivers/CMSIS/Include/cmsis_gcc.h
|
||||
../Drivers/CMSIS/Include/cmsis_iccarm.h
|
||||
../Drivers/CMSIS/Include/cmsis_version.h
|
||||
../Drivers/CMSIS/Include/core_cm0.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
|
||||
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
|
@ -0,0 +1,72 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/core_cm0.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/core_cm0.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/core_cm0.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/core_cm0.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
|
||||
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/core_cm0.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
|
||||
Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
|
||||
|
@ -0,0 +1,10 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
|
||||
|
||||
# compile C with /usr/bin/arm-none-eabi-gcc
|
||||
C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections
|
||||
|
||||
C_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300
|
||||
|
||||
C_INCLUDES = -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc
|
||||
|
@ -0,0 +1,2 @@
|
||||
/usr/bin/arm-none-eabi-ar qc libDrivers.a CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
|
||||
/usr/bin/arm-none-eabi-ranlib libDrivers.a
|
@ -0,0 +1,7 @@
|
||||
CMAKE_PROGRESS_1 = 1
|
||||
CMAKE_PROGRESS_2 = 2
|
||||
CMAKE_PROGRESS_3 = 3
|
||||
CMAKE_PROGRESS_4 = 4
|
||||
CMAKE_PROGRESS_5 = 5
|
||||
CMAKE_PROGRESS_6 = 6
|
||||
|
@ -0,0 +1 @@
|
||||
6
|
@ -0,0 +1,300 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
|
||||
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/progress.marks
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Convenience name for target.
|
||||
Drivers/CMakeFiles/Drivers.dir/rule:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/CMakeFiles/Drivers.dir/rule
|
||||
.PHONY : Drivers/CMakeFiles/Drivers.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
Drivers: Drivers/CMakeFiles/Drivers.dir/rule
|
||||
|
||||
.PHONY : Drivers
|
||||
|
||||
# fast build rule for target.
|
||||
Drivers/fast:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/build
|
||||
.PHONY : Drivers/fast
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o
|
||||
|
||||
# target to build an object file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i
|
||||
|
||||
# target to preprocess a source file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o
|
||||
|
||||
# target to build an object file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i
|
||||
|
||||
# target to preprocess a source file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o
|
||||
|
||||
# target to build an object file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i
|
||||
|
||||
# target to preprocess a source file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o
|
||||
|
||||
# target to build an object file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i
|
||||
|
||||
# target to preprocess a source file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o
|
||||
|
||||
# target to build an object file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i
|
||||
|
||||
# target to preprocess a source file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
|
||||
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
|
||||
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
|
||||
.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... Drivers"
|
||||
@echo "... edit_cache"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i"
|
||||
@echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
@ -0,0 +1,39 @@
|
||||
# Install script for directory: /home/key/github/KED/bsl/cmakeLowLayer/Drivers
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "TRUE")
|
||||
endif()
|
||||
|
Binary file not shown.
@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl/cmakeLowLayer")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/cmakeLowLayer/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
@ -0,0 +1,91 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include startup/CMakeFiles/Startup.dir/depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include startup/CMakeFiles/Startup.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include startup/CMakeFiles/Startup.dir/flags.make
|
||||
|
||||
startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: startup/CMakeFiles/Startup.dir/flags.make
|
||||
startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: ../startup/startup_stm32f042x6.s
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building ASM object startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/startup && /usr/bin/arm-none-eabi-gcc $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles/Startup.dir/startup_stm32f042x6.s.o -c /home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s
|
||||
|
||||
# Object files for target Startup
|
||||
Startup_OBJECTS = \
|
||||
"CMakeFiles/Startup.dir/startup_stm32f042x6.s.o"
|
||||
|
||||
# External object files for target Startup
|
||||
Startup_EXTERNAL_OBJECTS =
|
||||
|
||||
startup/libStartup.a: startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o
|
||||
startup/libStartup.a: startup/CMakeFiles/Startup.dir/build.make
|
||||
startup/libStartup.a: startup/CMakeFiles/Startup.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking ASM static library libStartup.a"
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/startup && $(CMAKE_COMMAND) -P CMakeFiles/Startup.dir/cmake_clean_target.cmake
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/startup && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Startup.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
startup/CMakeFiles/Startup.dir/build: startup/libStartup.a
|
||||
|
||||
.PHONY : startup/CMakeFiles/Startup.dir/build
|
||||
|
||||
startup/CMakeFiles/Startup.dir/clean:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build/startup && $(CMAKE_COMMAND) -P CMakeFiles/Startup.dir/cmake_clean.cmake
|
||||
.PHONY : startup/CMakeFiles/Startup.dir/clean
|
||||
|
||||
startup/CMakeFiles/Startup.dir/depend:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer/startup /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build/startup /home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/DependInfo.cmake --color=$(COLOR)
|
||||
.PHONY : startup/CMakeFiles/Startup.dir/depend
|
||||
|
@ -0,0 +1,10 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/Startup.dir/startup_stm32f042x6.s.o"
|
||||
"libStartup.pdb"
|
||||
"libStartup.a"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang ASM)
|
||||
include(CMakeFiles/Startup.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
@ -0,0 +1,3 @@
|
||||
file(REMOVE_RECURSE
|
||||
"libStartup.a"
|
||||
)
|
@ -1,5 +1,5 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
|
||||
|
||||
CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o
|
||||
startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o
|
||||
/home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s
|
@ -1,5 +1,5 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
|
||||
|
||||
CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o: ../startup/startup_stm32f042x6.s
|
||||
startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: ../startup/startup_stm32f042x6.s
|
||||
|
@ -0,0 +1,2 @@
|
||||
/usr/bin/arm-none-eabi-ar cr libStartup.a CMakeFiles/Startup.dir/startup_stm32f042x6.s.o
|
||||
/usr/bin/arm-none-eabi-ranlib libStartup.a
|
@ -0,0 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 7
|
||||
CMAKE_PROGRESS_2 = 8
|
||||
|
@ -0,0 +1 @@
|
||||
2
|
@ -0,0 +1,160 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
|
||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
||||
SUFFIXES =
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
|
||||
# Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E remove -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
|
||||
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles /home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/progress.marks
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Convenience name for target.
|
||||
startup/CMakeFiles/Startup.dir/rule:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/CMakeFiles/Startup.dir/rule
|
||||
.PHONY : startup/CMakeFiles/Startup.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
Startup: startup/CMakeFiles/Startup.dir/rule
|
||||
|
||||
.PHONY : Startup
|
||||
|
||||
# fast build rule for target.
|
||||
Startup/fast:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/build
|
||||
.PHONY : Startup/fast
|
||||
|
||||
startup_stm32f042x6.o: startup_stm32f042x6.s.o
|
||||
|
||||
.PHONY : startup_stm32f042x6.o
|
||||
|
||||
# target to build an object file
|
||||
startup_stm32f042x6.s.o:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o
|
||||
.PHONY : startup_stm32f042x6.s.o
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... Startup"
|
||||
@echo "... edit_cache"
|
||||
@echo "... startup_stm32f042x6.o"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
@ -0,0 +1,39 @@
|
||||
# Install script for directory: /home/key/github/KED/bsl/cmakeLowLayer/startup
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "TRUE")
|
||||
endif()
|
||||
|
@ -1,36 +1,15 @@
|
||||
project(cpp_sources)
|
||||
project(CppSources)
|
||||
|
||||
set(CPU_MCU "-mcpu=cortex-m0")
|
||||
|
||||
set(CPP_FLAGS
|
||||
${CPU_MCU}
|
||||
-mthumb #Instruction set : https://stackoverflow.com/questions/10638130/what-is-the-arm-thumb-instruction-set
|
||||
-Wall #Error : If you don't know this one please chek basical compiling
|
||||
-fdata-sections #Optimization : Linker can perform optimizations to improve locality of reference in the instruction space.
|
||||
-fdiagnostics-color=always
|
||||
-ffunction-sections #Optimization : used with -fdata-sections
|
||||
$<$<CONFIG:Debug>:-O -g -gdwarf-2>)
|
||||
|
||||
set(CPP_DEFS
|
||||
-DUSE_FULL_LL_DRIVER
|
||||
-DSTM32F042x6
|
||||
-DHSE_VALUE=8000000
|
||||
-DHSE_STARTUP_TIMEOUT=100
|
||||
-DLSE_STARTUP_TIMEOUT=5000
|
||||
-DLSE_VALUE=32768
|
||||
-DHSI_VALUE=8000000
|
||||
-DLSI_VALUE=40000
|
||||
-DVDD_VALUE=3300
|
||||
-DPREFETCH_ENABLE=1
|
||||
-DINSTRUCTION_CACHE_ENABLE=0
|
||||
-DDATA_CACHE_ENABLE=0)
|
||||
|
||||
set (CPP_SOURCES transfer.cpp)
|
||||
set (CPP_INCLUDES .)
|
||||
set (CPP_INCLUDES .)#${C_INCLUDES} )
|
||||
set (CPP_FLAGS ${C_FLAGS})
|
||||
set (CPP_DEFS ${C_DEFS})
|
||||
|
||||
add_library(${PROJECT_NAME} ${CPP_SOURCES})
|
||||
target_compile_options(${PROJECT_NAME} PUBLIC ${CPP_FLAGS})
|
||||
target_compile_definitions(${PROJECT_NAME} PUBLIC ${CPP_DEFS})
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE ${CPP_FLAGS})
|
||||
target_compile_definitions(${PROJECT_NAME} PRIVATE ${CPP_DEFS})
|
||||
target_include_directories(${PROJECT_NAME} PUBLIC ${CPP_INCLUDES})
|
||||
add_library(sub::stmSources ALIAS ${PROJECT_NAME})
|
||||
|
||||
#To create an alias to be used on the main CMAKE.
|
||||
add_library(sub::cppSources ALIAS ${PROJECT_NAME})
|
||||
|
@ -0,0 +1,13 @@
|
||||
project(Startup)
|
||||
|
||||
set (AS_SOURCES startup_stm32f042x6.s)
|
||||
set (AS_INCLUDES ${C_INCLUDES})
|
||||
set (AS_FLAGS -x assembler-with-cpp ${C_FLAGS})
|
||||
set (AS_DEFS ${C_DEFS})
|
||||
|
||||
add_library(${PROJECT_NAME} ${AS_SOURCES})
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE ${AS_FLAGS})
|
||||
target_compile_definitions(${PROJECT_NAME} PRIVATE ${AS_DEFS})
|
||||
|
||||
#To create an alias to be used on the main CMAKE.
|
||||
add_library(sub::startup ALIAS ${PROJECT_NAME})
|
Loading…
Reference in new issue