Most stable and arraged cmake yet... but not exactly separated

interrupts
atomega 4 years ago
parent 11d46dcda7
commit 44c07c9da7

@ -1,18 +1,16 @@
cmake_minimum_required(VERSION 3.5)
####################################################################################################
#VARIABLES : CMAKE
####################################################################################################
#An exhaustive list can be found : https://cmake.org/cmake/help/latest/manual/cmake-variables.7.html
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) # Why ? Because we are using our own Linker so this will prevent Cmake to veryfy cimpilation with his Linker option
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) # Why ? Because we are using our own Linker so this will prevent Cmake to veryfy cimpilation with his Linker option
set(CMAKE_C_COMPILER "/usr/bin/arm-none-eabi-gcc")
set(CMAKE_CXX_COMPILER "/usr/bin/arm-none-eabi-g++")
set(CMAKE_ASM_COMPILER "/usr/bin/arm-none-eabi-gcc")
set(CMAKE_ASM_FLAGS "-x assembler-with-cpp")#The reason that we use arm-none-eabi-gcc is that we will invoke c before the assemly Thus the flags.
#set(CMAKE_ASM_FLAGS "-x assembler-with-cpp") #This flag is now part of a library The reason that we use arm-none-eabi-gcc is that we will invoke c before the assemly Thus the flags.
set(CMAKE_OBJCOPY "/usr/bin/arm-none-eabi-objcopy")
####################################################################################################
#PRJECT & LIBRARIES : defined by user and important that it comes after the VARIABLES otherwise the Set varibale will not be used.
#PROJECT & LIBRARIES : defined by user and important that it comes after the VARIABLES otherwise the Set varibale will not be used.
####################################################################################################
project(refOvenTest ASM C CXX) # do this intead sf declaring languages in the beginning it will prevent loop errors.
@ -20,49 +18,62 @@ set(CMAKE_SYSTEM_NAME Generic)
set(CMAKE_SYSTEM_PROCESSOR arm)
set(CMAKE_CROSSCOMPILING TRUE)
set(CMAKE_VERBOSE_MAKEFILE on)#Shoul make print everythign ??
####################################################################################################
#VARIABLES : defined by user
####################################################################################################
set(LINKER startup/STM32F042K6Tx_FLASH.ld)
set(STARTUP startup/startup_stm32f042x6.s)
set(CPU_MCU "-mcpu=cortex-m0")
set(C_FUNC c_functions)
set(CPP_FUNC cpp_functions)
set(AS_FUNC assembly_functions)
set(EXECUTABLE ${PROJECT_NAME}.out)
####################################################################################################
#SOURCES
####################################################################################################
# For flags please check https://manned.org/arm-none-eabi-gcc/34fd6095
set(C_SOURCES
Src/main.c
Src/stm32f0xx_it.c
Src/system_stm32f0xx.c
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
Src/system_stm32f0xx.c
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c)
set(C_HEADERS
Inc/main.h
Inc/stm32_assert.h
Inc/stm32f0xx_it.h)
set(ASM_SOURCES ${STARTUP})
set (C_INCLUDES
Inc
Drivers/STM32F0xx_HAL_Driver/Inc
Drivers/CMSIS/Device/ST/STM32F0xx/Include
Drivers/CMSIS/Include)
####################################################################################################
#FLAGS
####################################################################################################
# For flags please check https://manned.org/arm-none-eabi-gcc/34fd6095
set(C_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
-ffunction-sections #Optimization : used with -fdata-sections
$<$<CONFIG:Debug>:-O -g -gdwarf-2>)
set(C_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 (AS_SOURCES ${STARTUP})
set (AS_INCLUDES ${C_INCLUDES})
set (AS_FLAGS -x assembler-with-cpp ${C_FLAGS})
set (AS_DEFS ${C_DEFS})
set(LINKER_FLAGS
-mthumb
@ -71,41 +82,29 @@ set(LINKER_FLAGS
-lm
-lnosys
-Wl,--gc-sections)
####################################################################################################
#LIBRARIES
####################################################################################################
add_library(${AS_FUNC} STATIC ${AS_SOURCES})
target_compile_options(${AS_FUNC} PRIVATE ${AS_FLAGS})
target_compile_definitions(${AS_FUNC} PRIVATE ${AS_DEFS})
#target_include_directories(${AS_FUNC} PRIVATE ${AS_INCLUDES})
add_library(${C_FUNC} STATIC ${C_SOURCES})
target_compile_options(${C_FUNC} PRIVATE ${C_FLAGS})
target_compile_definitions(${C_FUNC} PRIVATE ${C_DEFS})
target_include_directories(${C_FUNC} PRIVATE ${C_INCLUDES})
####################################################################################################
#COMPILATION
####################################################################################################
add_executable(${EXECUTABLE} ${C_SOURCES} ${C_HEADERS} ${ASM_SOURCES})
target_compile_options(${EXECUTABLE} PRIVATE
${CPU_MCU}
${C_FLAGS}
$<$<CONFIG:Debug>:-O -g -gdwarf-2>)
target_compile_definitions(${EXECUTABLE} PRIVATE
-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)
target_include_directories(${EXECUTABLE} PRIVATE
Inc
Drivers/STM32F0xx_HAL_Driver/Inc
Drivers/CMSIS/Device/ST/STM32F0xx/Include
Drivers/CMSIS/Include)
add_executable(${EXECUTABLE} Src/main.c)
target_compile_options(${EXECUTABLE} PRIVATE ${C_FLAGS})
target_compile_definitions(${EXECUTABLE} PRIVATE ${C_DEFS})
target_include_directories(${EXECUTABLE} PRIVATE ${C_INCLUDES})
####################################################################################################
#LINKING
####################################################################################################
target_link_libraries(${EXECUTABLE} ${AS_FUNC} ${C_FUNC})
target_link_options(${EXECUTABLE} PRIVATE
${CPU_MCU}
-mthumb
@ -116,8 +115,6 @@ target_link_options(${EXECUTABLE} PRIVATE
-lnosys
-Wl,-Map=${PROJECT_NAME}.map,--cref
-Wl,--gc-sections)
####################################################################################################
#CUSTOM COMMANDS
####################################################################################################
@ -129,8 +126,6 @@ add_custom_command(TARGET ${EXECUTABLE}
POST_BUILD
COMMAND arm-none-eabi-objcopy -O ihex ${EXECUTABLE} ${PROJECT_NAME}.hex
COMMAND arm-none-eabi-objcopy -O binary ${EXECUTABLE} ${PROJECT_NAME}.bin)
####################################################################################################
#CUSTOM Comments from dev.
####################################################################################################

@ -34,32 +34,32 @@ The CXX compiler identification is GNU, found in "/home/key/github/KED/bsl/cmake
Determining if the C compiler works passed with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_8dc63/fast"
/usr/bin/make -f CMakeFiles/cmTC_8dc63.dir/build.make CMakeFiles/cmTC_8dc63.dir/build
Run Build Command:"/usr/bin/make" "cmTC_83622/fast"
/usr/bin/make -f CMakeFiles/cmTC_83622.dir/build.make CMakeFiles/cmTC_83622.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_8dc63.dir/testCCompiler.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_8dc63.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C static library libcmTC_8dc63.a
/usr/bin/cmake -P CMakeFiles/cmTC_8dc63.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8dc63.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_8dc63.a CMakeFiles/cmTC_8dc63.dir/testCCompiler.c.o
/usr/bin/arm-none-eabi-ranlib libcmTC_8dc63.a
Building C object CMakeFiles/cmTC_83622.dir/testCCompiler.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_83622.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C static library libcmTC_83622.a
/usr/bin/cmake -P CMakeFiles/cmTC_83622.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_83622.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_83622.a CMakeFiles/cmTC_83622.dir/testCCompiler.c.o
/usr/bin/arm-none-eabi-ranlib libcmTC_83622.a
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_be96f/fast"
/usr/bin/make -f CMakeFiles/cmTC_be96f.dir/build.make CMakeFiles/cmTC_be96f.dir/build
Run Build Command:"/usr/bin/make" "cmTC_18e1a/fast"
/usr/bin/make -f CMakeFiles/cmTC_18e1a.dir/build.make CMakeFiles/cmTC_18e1a.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_be96f.dir/CMakeCCompilerABI.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_be96f.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c
Linking C static library libcmTC_be96f.a
/usr/bin/cmake -P CMakeFiles/cmTC_be96f.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_be96f.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_be96f.a CMakeFiles/cmTC_be96f.dir/CMakeCCompilerABI.c.o
/usr/bin/arm-none-eabi-ranlib libcmTC_be96f.a
Building C object CMakeFiles/cmTC_18e1a.dir/CMakeCCompilerABI.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_18e1a.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c
Linking C static library libcmTC_18e1a.a
/usr/bin/cmake -P CMakeFiles/cmTC_18e1a.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_18e1a.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_18e1a.a CMakeFiles/cmTC_18e1a.dir/CMakeCCompilerABI.c.o
/usr/bin/arm-none-eabi-ranlib libcmTC_18e1a.a
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -67,16 +67,16 @@ Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(arm-none-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_be96f/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_be96f.dir/build.make CMakeFiles/cmTC_be96f.dir/build]
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_18e1a/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_18e1a.dir/build.make CMakeFiles/cmTC_18e1a.dir/build]
ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_be96f.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_be96f.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C static library libcmTC_be96f.a]
ignore line: [/usr/bin/cmake -P CMakeFiles/cmTC_be96f.dir/cmake_clean_target.cmake]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_be96f.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-ar qc libcmTC_be96f.a CMakeFiles/cmTC_be96f.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/arm-none-eabi-ranlib libcmTC_be96f.a]
ignore line: [Building C object CMakeFiles/cmTC_18e1a.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_18e1a.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C static library libcmTC_18e1a.a]
ignore line: [/usr/bin/cmake -P CMakeFiles/cmTC_18e1a.dir/cmake_clean_target.cmake]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_18e1a.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-ar qc libcmTC_18e1a.a CMakeFiles/cmTC_18e1a.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/arm-none-eabi-ranlib libcmTC_18e1a.a]
ignore line: [make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp']
ignore line: []
implicit libs: []
@ -89,16 +89,16 @@ Parsed C implicit link information from above output:
Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e2c08/fast"
/usr/bin/make -f CMakeFiles/cmTC_e2c08.dir/build.make CMakeFiles/cmTC_e2c08.dir/build
Run Build Command:"/usr/bin/make" "cmTC_bdb5b/fast"
/usr/bin/make -f CMakeFiles/cmTC_bdb5b.dir/build.make CMakeFiles/cmTC_bdb5b.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e2c08.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_e2c08.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C static library libcmTC_e2c08.a
/usr/bin/cmake -P CMakeFiles/cmTC_e2c08.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e2c08.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_e2c08.a CMakeFiles/cmTC_e2c08.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-ranlib libcmTC_e2c08.a
Building C object CMakeFiles/cmTC_bdb5b.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_bdb5b.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C static library libcmTC_bdb5b.a
/usr/bin/cmake -P CMakeFiles/cmTC_bdb5b.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bdb5b.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_bdb5b.a CMakeFiles/cmTC_bdb5b.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-ranlib libcmTC_bdb5b.a
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -111,16 +111,16 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi
Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_62911/fast"
/usr/bin/make -f CMakeFiles/cmTC_62911.dir/build.make CMakeFiles/cmTC_62911.dir/build
Run Build Command:"/usr/bin/make" "cmTC_ed264/fast"
/usr/bin/make -f CMakeFiles/cmTC_ed264.dir/build.make CMakeFiles/cmTC_ed264.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_62911.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_62911.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C static library libcmTC_62911.a
/usr/bin/cmake -P CMakeFiles/cmTC_62911.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_62911.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_62911.a CMakeFiles/cmTC_62911.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-ranlib libcmTC_62911.a
Building C object CMakeFiles/cmTC_ed264.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_ed264.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C static library libcmTC_ed264.a
/usr/bin/cmake -P CMakeFiles/cmTC_ed264.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ed264.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_ed264.a CMakeFiles/cmTC_ed264.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-ranlib libcmTC_ed264.a
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -133,16 +133,16 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi
Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_d2169/fast"
/usr/bin/make -f CMakeFiles/cmTC_d2169.dir/build.make CMakeFiles/cmTC_d2169.dir/build
Run Build Command:"/usr/bin/make" "cmTC_6b1de/fast"
/usr/bin/make -f CMakeFiles/cmTC_6b1de.dir/build.make CMakeFiles/cmTC_6b1de.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_d2169.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_d2169.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C static library libcmTC_d2169.a
/usr/bin/cmake -P CMakeFiles/cmTC_d2169.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d2169.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_d2169.a CMakeFiles/cmTC_d2169.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-ranlib libcmTC_d2169.a
Building C object CMakeFiles/cmTC_6b1de.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_6b1de.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C static library libcmTC_6b1de.a
/usr/bin/cmake -P CMakeFiles/cmTC_6b1de.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6b1de.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_6b1de.a CMakeFiles/cmTC_6b1de.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-ranlib libcmTC_6b1de.a
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -153,32 +153,32 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi
Determining if the CXX compiler works passed with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_42346/fast"
/usr/bin/make -f CMakeFiles/cmTC_42346.dir/build.make CMakeFiles/cmTC_42346.dir/build
Run Build Command:"/usr/bin/make" "cmTC_e29b3/fast"
/usr/bin/make -f CMakeFiles/cmTC_e29b3.dir/build.make CMakeFiles/cmTC_e29b3.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_42346.dir/testCXXCompiler.cxx.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_42346.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX static library libcmTC_42346.a
/usr/bin/cmake -P CMakeFiles/cmTC_42346.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_42346.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_42346.a CMakeFiles/cmTC_42346.dir/testCXXCompiler.cxx.o
/usr/bin/arm-none-eabi-ranlib libcmTC_42346.a
Building CXX object CMakeFiles/cmTC_e29b3.dir/testCXXCompiler.cxx.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_e29b3.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX static library libcmTC_e29b3.a
/usr/bin/cmake -P CMakeFiles/cmTC_e29b3.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e29b3.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_e29b3.a CMakeFiles/cmTC_e29b3.dir/testCXXCompiler.cxx.o
/usr/bin/arm-none-eabi-ranlib libcmTC_e29b3.a
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_ad0d8/fast"
/usr/bin/make -f CMakeFiles/cmTC_ad0d8.dir/build.make CMakeFiles/cmTC_ad0d8.dir/build
Run Build Command:"/usr/bin/make" "cmTC_9ec3d/fast"
/usr/bin/make -f CMakeFiles/cmTC_9ec3d.dir/build.make CMakeFiles/cmTC_9ec3d.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_ad0d8.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_ad0d8.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp
Linking CXX static library libcmTC_ad0d8.a
/usr/bin/cmake -P CMakeFiles/cmTC_ad0d8.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ad0d8.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_ad0d8.a CMakeFiles/cmTC_ad0d8.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/arm-none-eabi-ranlib libcmTC_ad0d8.a
Building CXX object CMakeFiles/cmTC_9ec3d.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_9ec3d.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp
Linking CXX static library libcmTC_9ec3d.a
/usr/bin/cmake -P CMakeFiles/cmTC_9ec3d.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9ec3d.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_9ec3d.a CMakeFiles/cmTC_9ec3d.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/arm-none-eabi-ranlib libcmTC_9ec3d.a
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -186,16 +186,16 @@ Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(arm-none-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_ad0d8/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_ad0d8.dir/build.make CMakeFiles/cmTC_ad0d8.dir/build]
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_9ec3d/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_9ec3d.dir/build.make CMakeFiles/cmTC_9ec3d.dir/build]
ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_ad0d8.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_ad0d8.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Linking CXX static library libcmTC_ad0d8.a]
ignore line: [/usr/bin/cmake -P CMakeFiles/cmTC_ad0d8.dir/cmake_clean_target.cmake]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ad0d8.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-ar qc libcmTC_ad0d8.a CMakeFiles/cmTC_ad0d8.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/arm-none-eabi-ranlib libcmTC_ad0d8.a]
ignore line: [Building CXX object CMakeFiles/cmTC_9ec3d.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_9ec3d.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Linking CXX static library libcmTC_9ec3d.a]
ignore line: [/usr/bin/cmake -P CMakeFiles/cmTC_9ec3d.dir/cmake_clean_target.cmake]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9ec3d.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-ar qc libcmTC_9ec3d.a CMakeFiles/cmTC_9ec3d.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/arm-none-eabi-ranlib libcmTC_9ec3d.a]
ignore line: [make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp']
ignore line: []
implicit libs: []
@ -208,16 +208,16 @@ Parsed CXX implicit link information from above output:
Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_00a4f/fast"
/usr/bin/make -f CMakeFiles/cmTC_00a4f.dir/build.make CMakeFiles/cmTC_00a4f.dir/build
Run Build Command:"/usr/bin/make" "cmTC_bd549/fast"
/usr/bin/make -f CMakeFiles/cmTC_bd549.dir/build.make CMakeFiles/cmTC_bd549.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_00a4f.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_00a4f.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX static library libcmTC_00a4f.a
/usr/bin/cmake -P CMakeFiles/cmTC_00a4f.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_00a4f.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_00a4f.a CMakeFiles/cmTC_00a4f.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-ranlib libcmTC_00a4f.a
Building CXX object CMakeFiles/cmTC_bd549.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_bd549.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX static library libcmTC_bd549.a
/usr/bin/cmake -P CMakeFiles/cmTC_bd549.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bd549.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_bd549.a CMakeFiles/cmTC_bd549.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-ranlib libcmTC_bd549.a
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -283,16 +283,16 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi
Detecting CXX [-std=c++14] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_03870/fast"
/usr/bin/make -f CMakeFiles/cmTC_03870.dir/build.make CMakeFiles/cmTC_03870.dir/build
Run Build Command:"/usr/bin/make" "cmTC_ecf96/fast"
/usr/bin/make -f CMakeFiles/cmTC_ecf96.dir/build.make CMakeFiles/cmTC_ecf96.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_03870.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_03870.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX static library libcmTC_03870.a
/usr/bin/cmake -P CMakeFiles/cmTC_03870.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_03870.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_03870.a CMakeFiles/cmTC_03870.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-ranlib libcmTC_03870.a
Building CXX object CMakeFiles/cmTC_ecf96.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_ecf96.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX static library libcmTC_ecf96.a
/usr/bin/cmake -P CMakeFiles/cmTC_ecf96.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ecf96.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_ecf96.a CMakeFiles/cmTC_ecf96.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-ranlib libcmTC_ecf96.a
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -358,16 +358,16 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi
Detecting CXX [-std=c++11] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_0e3e3/fast"
/usr/bin/make -f CMakeFiles/cmTC_0e3e3.dir/build.make CMakeFiles/cmTC_0e3e3.dir/build
Run Build Command:"/usr/bin/make" "cmTC_fb751/fast"
/usr/bin/make -f CMakeFiles/cmTC_fb751.dir/build.make CMakeFiles/cmTC_fb751.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_0e3e3.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_0e3e3.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX static library libcmTC_0e3e3.a
/usr/bin/cmake -P CMakeFiles/cmTC_0e3e3.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0e3e3.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_0e3e3.a CMakeFiles/cmTC_0e3e3.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-ranlib libcmTC_0e3e3.a
Building CXX object CMakeFiles/cmTC_fb751.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_fb751.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX static library libcmTC_fb751.a
/usr/bin/cmake -P CMakeFiles/cmTC_fb751.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fb751.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_fb751.a CMakeFiles/cmTC_fb751.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-ranlib libcmTC_fb751.a
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -433,16 +433,16 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi
Detecting CXX [-std=c++98] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_340ec/fast"
/usr/bin/make -f CMakeFiles/cmTC_340ec.dir/build.make CMakeFiles/cmTC_340ec.dir/build
Run Build Command:"/usr/bin/make" "cmTC_389e3/fast"
/usr/bin/make -f CMakeFiles/cmTC_389e3.dir/build.make CMakeFiles/cmTC_389e3.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_340ec.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_340ec.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX static library libcmTC_340ec.a
/usr/bin/cmake -P CMakeFiles/cmTC_340ec.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_340ec.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_340ec.a CMakeFiles/cmTC_340ec.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-ranlib libcmTC_340ec.a
Building CXX object CMakeFiles/cmTC_389e3.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_389e3.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX static library libcmTC_389e3.a
/usr/bin/cmake -P CMakeFiles/cmTC_389e3.dir/cmake_clean_target.cmake
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_389e3.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-ar qc libcmTC_389e3.a CMakeFiles/cmTC_389e3.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-ranlib libcmTC_389e3.a
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'

@ -123,4 +123,6 @@ set(CMAKE_MAKEFILE_PRODUCTS
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/refOvenTest.out.dir/DependInfo.cmake"
"CMakeFiles/assembly_functions.dir/DependInfo.cmake"
"CMakeFiles/c_functions.dir/DependInfo.cmake"
)

@ -71,10 +71,11 @@ CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build
# Target rules for target CMakeFiles/refOvenTest.out.dir
# All Build rule for target.
CMakeFiles/refOvenTest.out.dir/all:
CMakeFiles/refOvenTest.out.dir/all: CMakeFiles/assembly_functions.dir/all
CMakeFiles/refOvenTest.out.dir/all: CMakeFiles/c_functions.dir/all
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/depend
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10 "Built target refOvenTest.out"
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=11,12 "Built target refOvenTest.out"
.PHONY : CMakeFiles/refOvenTest.out.dir/all
# Include target in all.
@ -84,7 +85,7 @@ all: CMakeFiles/refOvenTest.out.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/refOvenTest.out.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 10
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 12
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/refOvenTest.out.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : CMakeFiles/refOvenTest.out.dir/rule
@ -104,6 +105,80 @@ clean: CMakeFiles/refOvenTest.out.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/assembly_functions.dir
# All Build rule for target.
CMakeFiles/assembly_functions.dir/all:
$(MAKE) -f CMakeFiles/assembly_functions.dir/build.make CMakeFiles/assembly_functions.dir/depend
$(MAKE) -f CMakeFiles/assembly_functions.dir/build.make CMakeFiles/assembly_functions.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=1,2 "Built target assembly_functions"
.PHONY : CMakeFiles/assembly_functions.dir/all
# Include target in all.
all: CMakeFiles/assembly_functions.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/assembly_functions.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 2
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/assembly_functions.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : CMakeFiles/assembly_functions.dir/rule
# Convenience name for target.
assembly_functions: CMakeFiles/assembly_functions.dir/rule
.PHONY : assembly_functions
# clean rule for target.
CMakeFiles/assembly_functions.dir/clean:
$(MAKE) -f CMakeFiles/assembly_functions.dir/build.make CMakeFiles/assembly_functions.dir/clean
.PHONY : CMakeFiles/assembly_functions.dir/clean
# clean rule for target.
clean: CMakeFiles/assembly_functions.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/c_functions.dir
# All Build rule for target.
CMakeFiles/c_functions.dir/all:
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/depend
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=3,4,5,6,7,8,9,10 "Built target c_functions"
.PHONY : CMakeFiles/c_functions.dir/all
# Include target in all.
all: CMakeFiles/c_functions.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/c_functions.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 8
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/c_functions.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : CMakeFiles/c_functions.dir/rule
# Convenience name for target.
c_functions: CMakeFiles/c_functions.dir/rule
.PHONY : c_functions
# clean rule for target.
CMakeFiles/c_functions.dir/clean:
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/clean
.PHONY : CMakeFiles/c_functions.dir/clean
# clean rule for target.
clean: CMakeFiles/c_functions.dir/clean
.PHONY : clean
#=============================================================================
# Special targets to cleanup operation of make.

@ -1,3 +1,5 @@
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/edit_cache.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

@ -0,0 +1,36 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"ASM"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_ASM
"/home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o"
)
set(CMAKE_ASM_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_ASM
"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_ASM_TARGET_INCLUDE_PATH
)
# 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,94 @@
# 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
# Produce verbose output by default.
VERBOSE = 1
# 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

@ -0,0 +1,10 @@
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()

@ -0,0 +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
/home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s

@ -0,0 +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

@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# compile ASM with /usr/bin/arm-none-eabi-gcc
ASM_FLAGS = -x assembler-with-cpp -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections
ASM_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
ASM_INCLUDES =

@ -0,0 +1,2 @@
/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

@ -0,0 +1,208 @@
#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_cortex.h
stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.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
../Inc/main.h
stm32f0xx_ll_crs.h
../Inc/stm32f0xx_ll_crs.h
stm32f0xx_ll_rcc.h
../Inc/stm32f0xx_ll_rcc.h
stm32f0xx_ll_bus.h
../Inc/stm32f0xx_ll_bus.h
stm32f0xx_ll_system.h
../Inc/stm32f0xx_ll_system.h
stm32f0xx_ll_exti.h
../Inc/stm32f0xx_ll_exti.h
stm32f0xx_ll_cortex.h
../Inc/stm32f0xx_ll_cortex.h
stm32f0xx_ll_utils.h
../Inc/stm32f0xx_ll_utils.h
stm32f0xx_ll_pwr.h
../Inc/stm32f0xx_ll_pwr.h
stm32f0xx_ll_dma.h
../Inc/stm32f0xx_ll_dma.h
stm32f0xx_ll_gpio.h
../Inc/stm32f0xx_ll_gpio.h
stm32_assert.h
../Inc/stm32_assert.h
../Inc/stm32_assert.h
../Inc/stm32f0xx_it.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
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c
main.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/main.h
stm32f0xx_it.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c
stm32f0xx.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx.h

@ -0,0 +1,46 @@
# 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/CMakeFiles/c_functions.dir/Drivers/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/CMakeFiles/c_functions.dir/Drivers/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/CMakeFiles/c_functions.dir/Drivers/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/CMakeFiles/c_functions.dir/Drivers/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/CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o"
"/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o"
"/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/Src/system_stm32f0xx.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
"../Inc"
"../Drivers/STM32F0xx_HAL_Driver/Inc"
"../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Drivers/CMSIS/Include"
)
# 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,192 @@
# 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
# Produce verbose output by default.
VERBOSE = 1
# 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/c_functions.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/c_functions.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/c_functions.dir/flags.make
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: CMakeFiles/c_functions.dir/flags.make
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.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 CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c > CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.i
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c -o CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.s
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: CMakeFiles/c_functions.dir/flags.make
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Src/system_stm32f0xx.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 CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c > CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.i
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c -o CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.s
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: CMakeFiles/c_functions.dir/flags.make
CMakeFiles/c_functions.dir/Drivers/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_3) "Building C object CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/c_functions.dir/Drivers/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
CMakeFiles/c_functions.dir/Drivers/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i"
/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
CMakeFiles/c_functions.dir/Drivers/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s"
/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: CMakeFiles/c_functions.dir/flags.make
CMakeFiles/c_functions.dir/Drivers/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 CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/c_functions.dir/Drivers/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
CMakeFiles/c_functions.dir/Drivers/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i"
/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
CMakeFiles/c_functions.dir/Drivers/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s"
/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: CMakeFiles/c_functions.dir/flags.make
CMakeFiles/c_functions.dir/Drivers/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 CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/c_functions.dir/Drivers/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
CMakeFiles/c_functions.dir/Drivers/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i"
/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
CMakeFiles/c_functions.dir/Drivers/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s"
/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: CMakeFiles/c_functions.dir/flags.make
CMakeFiles/c_functions.dir/Drivers/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_6) "Building C object CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/c_functions.dir/Drivers/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
CMakeFiles/c_functions.dir/Drivers/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i"
/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
CMakeFiles/c_functions.dir/Drivers/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s"
/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: CMakeFiles/c_functions.dir/flags.make
CMakeFiles/c_functions.dir/Drivers/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_7) "Building C object CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/c_functions.dir/Drivers/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
CMakeFiles/c_functions.dir/Drivers/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i"
/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
CMakeFiles/c_functions.dir/Drivers/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s"
/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/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
# Object files for target c_functions
c_functions_OBJECTS = \
"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"
# External object files for target c_functions
c_functions_EXTERNAL_OBJECTS =
libc_functions.a: CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o
libc_functions.a: CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o
libc_functions.a: CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
libc_functions.a: CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
libc_functions.a: CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
libc_functions.a: CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
libc_functions.a: CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
libc_functions.a: CMakeFiles/c_functions.dir/build.make
libc_functions.a: CMakeFiles/c_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_8) "Linking C static library libc_functions.a"
$(CMAKE_COMMAND) -P CMakeFiles/c_functions.dir/cmake_clean_target.cmake
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/c_functions.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/c_functions.dir/build: libc_functions.a
.PHONY : CMakeFiles/c_functions.dir/build
CMakeFiles/c_functions.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/c_functions.dir/cmake_clean.cmake
.PHONY : CMakeFiles/c_functions.dir/clean
CMakeFiles/c_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/c_functions.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/c_functions.dir/depend

@ -0,0 +1,16 @@
file(REMOVE_RECURSE
"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"
"libc_functions.pdb"
"libc_functions.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/c_functions.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

@ -0,0 +1,113 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
CMakeFiles/c_functions.dir/Drivers/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
../Inc/stm32_assert.h
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
CMakeFiles/c_functions.dir/Drivers/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
../Inc/stm32_assert.h
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
CMakeFiles/c_functions.dir/Drivers/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
CMakeFiles/c_functions.dir/Drivers/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
../Inc/stm32_assert.h
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
CMakeFiles/c_functions.dir/Drivers/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
../Inc/stm32_assert.h
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.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_cortex.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.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
../Inc/main.h
../Inc/stm32_assert.h
../Inc/stm32f0xx_it.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.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
/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c

@ -0,0 +1,113 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Inc/stm32_assert.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Inc/stm32_assert.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Inc/stm32_assert.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Inc/stm32_assert.h
CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Inc/main.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Inc/stm32_assert.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Inc/stm32f0xx_it.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.c
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Src/system_stm32f0xx.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/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Include

@ -0,0 +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-ranlib libc_functions.a

@ -0,0 +1,9 @@
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

@ -158,55 +158,7 @@ stm32_assert.h
../Inc/stm32_assert.h
../Inc/stm32f0xx_it.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
/home/key/github/KED/bsl/cmakeLowLayer/Src/main.c
main.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/main.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c
main.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/main.h
stm32f0xx_it.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c
stm32f0xx.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx.h

@ -1,46 +1,10 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"ASM"
"C"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_ASM
"/home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o"
)
set(CMAKE_ASM_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_ASM
"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_ASM_TARGET_INCLUDE_PATH
"../Inc"
"../Drivers/STM32F0xx_HAL_Driver/Inc"
"../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Drivers/CMSIS/Include"
)
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/CMakeFiles/refOvenTest.out.dir/Drivers/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/CMakeFiles/refOvenTest.out.dir/Drivers/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/CMakeFiles/refOvenTest.out.dir/Drivers/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/CMakeFiles/refOvenTest.out.dir/Drivers/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/CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o"
"/home/key/github/KED/bsl/cmakeLowLayer/Src/main.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/Src/main.c.o"
"/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o"
"/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o"
)
set(CMAKE_C_COMPILER_ID "GNU")
@ -70,6 +34,8 @@ set(CMAKE_C_TARGET_INCLUDE_PATH
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake"
)
# Fortran module output directory.

@ -73,129 +73,19 @@ CMakeFiles/refOvenTest.out.dir/Src/main.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Src/main.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c -o CMakeFiles/refOvenTest.out.dir/Src/main.c.s
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.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 CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c > CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.i
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c -o CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.s
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.dir/Drivers/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_3) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/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
CMakeFiles/refOvenTest.out.dir/Drivers/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i"
/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
CMakeFiles/refOvenTest.out.dir/Drivers/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s"
/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.dir/Drivers/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 CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/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
CMakeFiles/refOvenTest.out.dir/Drivers/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i"
/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
CMakeFiles/refOvenTest.out.dir/Drivers/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s"
/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.dir/Drivers/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 CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/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
CMakeFiles/refOvenTest.out.dir/Drivers/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i"
/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
CMakeFiles/refOvenTest.out.dir/Drivers/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s"
/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Src/system_stm32f0xx.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building C object CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c > CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.i
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c -o CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.s
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.dir/Drivers/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_7) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/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
CMakeFiles/refOvenTest.out.dir/Drivers/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i"
/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
CMakeFiles/refOvenTest.out.dir/Drivers/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s"
/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.dir/Drivers/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_8) "Building C object CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Drivers/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
CMakeFiles/refOvenTest.out.dir/Drivers/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i"
/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
CMakeFiles/refOvenTest.out.dir/Drivers/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s"
/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/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o: CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.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_9) "Building ASM object CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o"
/usr/bin/arm-none-eabi-gcc $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o -c /home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s
# Object files for target refOvenTest.out
refOvenTest_out_OBJECTS = \
"CMakeFiles/refOvenTest.out.dir/Src/main.c.o" \
"CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o" \
"CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" \
"CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" \
"CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" \
"CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o" \
"CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" \
"CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" \
"CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o"
"CMakeFiles/refOvenTest.out.dir/Src/main.c.o"
# External object files for target refOvenTest.out
refOvenTest_out_EXTERNAL_OBJECTS =
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Src/main.c.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/build.make
refOvenTest.out: libassembly_functions.a
refOvenTest.out: libc_functions.a
refOvenTest.out: CMakeFiles/refOvenTest.out.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_10) "Linking C executable refOvenTest.out"
@$(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 C executable refOvenTest.out"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/refOvenTest.out.dir/link.txt --verbose=$(VERBOSE)
arm-none-eabi-size refOvenTest.out
arm-none-eabi-objcopy -O ihex refOvenTest.out refOvenTest.hex

@ -1,18 +1,10 @@
file(REMOVE_RECURSE
"CMakeFiles/refOvenTest.out.dir/Src/main.c.o"
"CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o"
"CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o"
"CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o"
"CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o"
"CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o"
"CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o"
"CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o"
"CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o"
"refOvenTest.out.pdb"
"refOvenTest.out"
)
# Per-language clean rules from dependency scanning.
foreach(lang ASM C)
foreach(lang C)
include(CMakeFiles/refOvenTest.out.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

@ -1,81 +1,6 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o
/home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s
CMakeFiles/refOvenTest.out.dir/Drivers/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
../Inc/stm32_assert.h
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
CMakeFiles/refOvenTest.out.dir/Drivers/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
../Inc/stm32_assert.h
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
CMakeFiles/refOvenTest.out.dir/Drivers/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
CMakeFiles/refOvenTest.out.dir/Drivers/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
../Inc/stm32_assert.h
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
CMakeFiles/refOvenTest.out.dir/Drivers/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
../Inc/stm32_assert.h
/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
CMakeFiles/refOvenTest.out.dir/Src/main.c.o
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
@ -100,40 +25,3 @@ CMakeFiles/refOvenTest.out.dir/Src/main.c.o
../Inc/main.h
../Inc/stm32_assert.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/main.c
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.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_cortex.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.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
../Inc/main.h
../Inc/stm32_assert.h
../Inc/stm32f0xx_it.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.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
/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c

@ -1,81 +1,6 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o: ../startup/startup_stm32f042x6.s
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Inc/stm32_assert.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Inc/stm32_assert.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Inc/stm32_assert.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Inc/stm32_assert.h
CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c
CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
@ -100,40 +25,3 @@ CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Inc/main.h
CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Inc/stm32_assert.h
CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Src/main.c
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Inc/main.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Inc/stm32_assert.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Inc/stm32f0xx_it.h
CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.c
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o: ../Src/system_stm32f0xx.c

@ -1,14 +1,7 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# compile ASM with /usr/bin/arm-none-eabi-gcc
# compile C with /usr/bin/arm-none-eabi-gcc
ASM_FLAGS = -x assembler-with-cpp -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections
ASM_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
ASM_INCLUDES = -I/home/key/github/KED/bsl/cmakeLowLayer/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Include
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

@ -1 +1 @@
/usr/bin/arm-none-eabi-gcc -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 CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o -o refOvenTest.out
/usr/bin/arm-none-eabi-gcc -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

@ -1,11 +1,3 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2
CMAKE_PROGRESS_3 = 3
CMAKE_PROGRESS_4 = 4
CMAKE_PROGRESS_5 = 5
CMAKE_PROGRESS_6 = 6
CMAKE_PROGRESS_7 = 7
CMAKE_PROGRESS_8 = 8
CMAKE_PROGRESS_9 = 9
CMAKE_PROGRESS_10 = 10
CMAKE_PROGRESS_1 = 11
CMAKE_PROGRESS_2 = 12

@ -126,13 +126,39 @@ refOvenTest.out/fast:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/build
.PHONY : refOvenTest.out/fast
#=============================================================================
# Target rules for targets named assembly_functions
# Build rule for target.
assembly_functions: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 assembly_functions
.PHONY : assembly_functions
# fast build rule for target.
assembly_functions/fast:
$(MAKE) -f CMakeFiles/assembly_functions.dir/build.make CMakeFiles/assembly_functions.dir/build
.PHONY : assembly_functions/fast
#=============================================================================
# Target rules for targets named c_functions
# Build rule for target.
c_functions: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 c_functions
.PHONY : c_functions
# fast build rule for target.
c_functions/fast:
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/build
.PHONY : c_functions/fast
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o
# target to build an object file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
@ -141,7 +167,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i: Drivers/STM32F0xx_HAL_Driv
# target to preprocess a source file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
@ -150,7 +176,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s: Drivers/STM32F0xx_HAL_Driv
# target to generate assembly for a file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
@ -159,7 +185,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o: Drivers/STM32F0xx_HAL_Driv
# target to build an object file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
@ -168,7 +194,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i: Drivers/STM32F0xx_HAL_Driv
# target to preprocess a source file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
@ -177,7 +203,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s: Drivers/STM32F0xx_HAL_Driv
# target to generate assembly for a file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
@ -186,7 +212,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o: Drivers/STM32F0xx_HAL_Drive
# target to build an object file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
@ -195,7 +221,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i: Drivers/STM32F0xx_HAL_Drive
# target to preprocess a source file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
@ -204,7 +230,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s: Drivers/STM32F0xx_HAL_Drive
# target to generate assembly for a file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
@ -213,7 +239,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o: Drivers/STM32F0xx_HAL_Drive
# target to build an object file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
@ -222,7 +248,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i: Drivers/STM32F0xx_HAL_Drive
# target to preprocess a source file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
@ -231,7 +257,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s: Drivers/STM32F0xx_HAL_Drive
# target to generate assembly for a file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
@ -240,7 +266,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o: Drivers/STM32F0xx_HAL_Dri
# target to build an object file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
@ -249,7 +275,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i: Drivers/STM32F0xx_HAL_Dri
# target to preprocess a source file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
@ -258,7 +284,7 @@ Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s: Drivers/STM32F0xx_HAL_Dri
# target to generate assembly for a file
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s
Src/main.o: Src/main.c.o
@ -294,7 +320,7 @@ Src/stm32f0xx_it.o: Src/stm32f0xx_it.c.o
# target to build an object file
Src/stm32f0xx_it.c.o:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.o
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o
.PHONY : Src/stm32f0xx_it.c.o
Src/stm32f0xx_it.i: Src/stm32f0xx_it.c.i
@ -303,7 +329,7 @@ Src/stm32f0xx_it.i: Src/stm32f0xx_it.c.i
# target to preprocess a source file
Src/stm32f0xx_it.c.i:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.i
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.i
.PHONY : Src/stm32f0xx_it.c.i
Src/stm32f0xx_it.s: Src/stm32f0xx_it.c.s
@ -312,7 +338,7 @@ Src/stm32f0xx_it.s: Src/stm32f0xx_it.c.s
# target to generate assembly for a file
Src/stm32f0xx_it.c.s:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/stm32f0xx_it.c.s
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.s
.PHONY : Src/stm32f0xx_it.c.s
Src/system_stm32f0xx.o: Src/system_stm32f0xx.c.o
@ -321,7 +347,7 @@ Src/system_stm32f0xx.o: Src/system_stm32f0xx.c.o
# target to build an object file
Src/system_stm32f0xx.c.o:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.o
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o
.PHONY : Src/system_stm32f0xx.c.o
Src/system_stm32f0xx.i: Src/system_stm32f0xx.c.i
@ -330,7 +356,7 @@ Src/system_stm32f0xx.i: Src/system_stm32f0xx.c.i
# target to preprocess a source file
Src/system_stm32f0xx.c.i:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.i
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.i
.PHONY : Src/system_stm32f0xx.c.i
Src/system_stm32f0xx.s: Src/system_stm32f0xx.c.s
@ -339,7 +365,7 @@ Src/system_stm32f0xx.s: Src/system_stm32f0xx.c.s
# target to generate assembly for a file
Src/system_stm32f0xx.c.s:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/system_stm32f0xx.c.s
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.s
.PHONY : Src/system_stm32f0xx.c.s
startup/startup_stm32f042x6.o: startup/startup_stm32f042x6.s.o
@ -348,7 +374,7 @@ startup/startup_stm32f042x6.o: startup/startup_stm32f042x6.s.o
# target to build an object file
startup/startup_stm32f042x6.s.o:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/startup/startup_stm32f042x6.s.o
$(MAKE) -f CMakeFiles/assembly_functions.dir/build.make CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o
.PHONY : startup/startup_stm32f042x6.s.o
# Help Target
@ -358,8 +384,10 @@ help:
@echo "... clean"
@echo "... depend"
@echo "... rebuild_cache"
@echo "... refOvenTest.out"
@echo "... edit_cache"
@echo "... refOvenTest.out"
@echo "... assembly_functions"
@echo "... c_functions"
@echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o"
@echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i"
@echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s"

Loading…
Cancel
Save