diff --git a/bsl/cmakeLowLayer/CMakeLists.txt b/bsl/cmakeLowLayer/CMakeLists.txt index d62c3f6..9897cf1 100644 --- a/bsl/cmakeLowLayer/CMakeLists.txt +++ b/bsl/cmakeLowLayer/CMakeLists.txt @@ -24,7 +24,6 @@ set(CMAKE_VERBOSE_MAKEFILE off)#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) @@ -35,16 +34,10 @@ set(EXECUTABLE ${PROJECT_NAME}.out) #################################################################################################### set(C_SOURCES 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 - Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c - Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c) + Src/system_stm32f0xx.c) set (C_INCLUDES Inc - cppSrc Drivers/STM32F0xx_HAL_Driver/Inc Drivers/CMSIS/Device/ST/STM32F0xx/Include Drivers/CMSIS/Include) @@ -72,14 +65,9 @@ set(C_DEFS -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 (CPP_SOURCES cppSrc/transfer.cpp) -set (CPP_INCLUDES ${C_INCLUDES} ) +set (CPP_INCLUDES cppSrc)#${C_INCLUDES} ) set (CPP_FLAGS ${C_FLAGS}) set (CPP_DEFS ${C_DEFS}) @@ -90,12 +78,16 @@ set(LINKER_FLAGS -lm -lnosys -Wl,--gc-sections) +#################################################################################################### +#SUBDIRECTORIES +#################################################################################################### +add_subdirectory(Drivers) +add_subdirectory(startup) +#add_subdirectory(Src) + #################################################################################################### #LIBRARIES #################################################################################################### -add_library(${AS_FUNC} ${AS_SOURCES}) -target_compile_options(${AS_FUNC} PRIVATE ${AS_FLAGS}) -target_compile_definitions(${AS_FUNC} PRIVATE ${AS_DEFS}) add_library(${C_FUNC} ${C_SOURCES}) target_compile_options(${C_FUNC} PRIVATE ${C_FLAGS}) @@ -107,21 +99,27 @@ target_compile_options(${CPP_FUNC} PRIVATE ${CPP_FLAGS}) target_compile_definitions(${CPP_FUNC} PRIVATE ${CPP_DEFS}) target_include_directories(${CPP_FUNC} PUBLIC ${CPP_INCLUDES}) -#link_directories(cppSrc Inc/) -#target_link_libraries(${CPP_FUNC} ${C_FUNC}) -#target_link_libraries(${C_FUNC} ${CPP_FUNC}) +#Please note that this configuration can define in which order the libraries will be compiled an linked +#with eachother. #################################################################################################### -#COMPILATION +#LINKING LIBRARIES +#################################################################################################### +target_link_libraries(${CPP_FUNC} ${C_FUNC}) +target_link_libraries(${C_FUNC} sub::drivers) + +#################################################################################################### +#EXECUTABLE #################################################################################################### add_executable(${EXECUTABLE} Src/main.c) target_compile_options(${EXECUTABLE} PRIVATE ${C_FLAGS}) target_compile_definitions(${EXECUTABLE} PRIVATE ${C_DEFS}) target_include_directories(${EXECUTABLE} PUBLIC ${C_INCLUDES}) + #################################################################################################### -#LINKING +#LINKING EXECUTEABLE #################################################################################################### -target_link_libraries(${EXECUTABLE} ${AS_FUNC} ${C_FUNC} ${CPP_FUNC}) +target_link_libraries(${EXECUTABLE} sub::startup ${C_FUNC} ${CPP_FUNC}) target_link_options(${EXECUTABLE} PRIVATE ${CPU_MCU} -mthumb diff --git a/bsl/cmakeLowLayer/Drivers/CMakeLists.txt b/bsl/cmakeLowLayer/Drivers/CMakeLists.txt new file mode 100644 index 0000000..a7239a4 --- /dev/null +++ b/bsl/cmakeLowLayer/Drivers/CMakeLists.txt @@ -0,0 +1,21 @@ +project(Drivers) + +set(P_SOURCES + STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c + STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c + STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c + STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c + STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c) + +add_library(${PROJECT_NAME} ${P_SOURCES}) +target_compile_options(${PROJECT_NAME} PRIVATE ${C_FLAGS}) +target_compile_definitions(${PROJECT_NAME} PRIVATE ${C_DEFS}) + +target_include_directories(${PROJECT_NAME} + PUBLIC + CMSIS/Device/ST/STM32F0xx/Include + CMSIS/Include + STM32F0xx_HAL_Driver/Inc +) +#To create an alias to be used on the main CMAKE. +add_library(sub::drivers ALIAS ${PROJECT_NAME}) diff --git a/bsl/cmakeLowLayer/Src/CMakeLists.txt b/bsl/cmakeLowLayer/Src/CMakeLists.txt new file mode 100644 index 0000000..dc51753 --- /dev/null +++ b/bsl/cmakeLowLayer/Src/CMakeLists.txt @@ -0,0 +1,20 @@ +project(CSources) + +set (C_INCLUDES + ../Inc + ../Drivers/STM32F0xx_HAL_Driver/Inc + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include + ../Drivers/CMSIS/Include) + +set(C_SOURCES + main.c + stm32f0xx_it.c + system_stm32f0xx.c) + +add_library(${PROJECT_NAME} ${C_SOURCES}) +target_compile_options(${PROJECT_NAME} PRIVATE ${C_FLAGS}) +target_compile_definitions(${PROJECT_NAME} PRIVATE ${C_DEFS}) +target_include_directories(${PROJECT_NAME} PUBLIC ${C_INCLUDES}) + +#To create an alias to be used on the main CMAKE. +add_library(sub::cSources ALIAS ${PROJECT_NAME}) diff --git a/bsl/cmakeLowLayer/build/CMakeCache.txt b/bsl/cmakeLowLayer/build/CMakeCache.txt index 6d99b0e..7ffa1b9 100644 --- a/bsl/cmakeLowLayer/build/CMakeCache.txt +++ b/bsl/cmakeLowLayer/build/CMakeCache.txt @@ -214,6 +214,24 @@ CMAKE_STRIP:FILEPATH=/usr/bin/arm-none-eabi-strip // Studio IDE projects all commands are done without /nologo. CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE +//Value Computed by CMake +Drivers_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers + +//Value Computed by CMake +Drivers_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/Drivers + +//Value Computed by CMake +Startup_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build/startup + +//Value Computed by CMake +Startup_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/startup + +//Dependencies for the target +c_functions_LIB_DEPENDS:STATIC=general;sub::drivers; + +//Dependencies for the target +cpp_functions_LIB_DEPENDS:STATIC=general;c_functions; + //Value Computed by CMake refOvenTest_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build @@ -332,7 +350,7 @@ CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_NM CMAKE_NM-ADVANCED:INTERNAL=1 //number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=3 //ADVANCED property for variable: CMAKE_OBJDUMP CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 //Platform information initialized diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log b/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log index ac6dc74..d4c514d 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log +++ b/bsl/cmakeLowLayer/build/CMakeFiles/CMakeOutput.log @@ -34,28 +34,28 @@ 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_ab575/fast" -/usr/bin/make -f CMakeFiles/cmTC_ab575.dir/build.make CMakeFiles/cmTC_ab575.dir/build +Run Build Command:"/usr/bin/make" "cmTC_abaeb/fast" +/usr/bin/make -f CMakeFiles/cmTC_abaeb.dir/build.make CMakeFiles/cmTC_abaeb.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_ab575.dir/testCCompiler.c.o -/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_ab575.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c -Linking C executable cmTC_ab575 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ab575.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_ab575.dir/testCCompiler.c.o -o cmTC_ab575 +Building C object CMakeFiles/cmTC_abaeb.dir/testCCompiler.c.o +/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_abaeb.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_abaeb +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_abaeb.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_abaeb.dir/testCCompiler.c.o -o cmTC_abaeb 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_1a997/fast" -/usr/bin/make -f CMakeFiles/cmTC_1a997.dir/build.make CMakeFiles/cmTC_1a997.dir/build +Run Build Command:"/usr/bin/make" "cmTC_c00de/fast" +/usr/bin/make -f CMakeFiles/cmTC_c00de.dir/build.make CMakeFiles/cmTC_c00de.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_1a997.dir/CMakeCCompilerABI.c.o -/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_1a997.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c -Linking C executable cmTC_1a997 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1a997.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_1a997.dir/CMakeCCompilerABI.c.o -o cmTC_1a997 +Building C object CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o +/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c +Linking C executable cmTC_c00de +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c00de.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -o cmTC_c00de Using built-in specs. Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence @@ -67,9 +67,9 @@ Thread model: single gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/ -COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_1a997' - /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccizLM3y.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_1a997 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_1a997.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o -COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_1a997' +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c00de' + /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccmi4CH1.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_c00de /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c00de' make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -77,14 +77,14 @@ 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_1a997/fast"] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_1a997.dir/build.make CMakeFiles/cmTC_1a997.dir/build] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_c00de/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_c00de.dir/build.make CMakeFiles/cmTC_c00de.dir/build] ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_1a997.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_1a997.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c] - ignore line: [Linking C executable cmTC_1a997] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1a997.dir/link.txt --verbose=1] - ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_1a997.dir/CMakeCCompilerABI.c.o -o cmTC_1a997 ] + ignore line: [Building C object CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTC_c00de] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c00de.dir/link.txt --verbose=1] + ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -o cmTC_c00de ] ignore line: [Using built-in specs.] ignore line: [Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs] ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] @@ -96,13 +96,13 @@ Parsed C implicit link information from above output: ignore line: [gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) ] ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_1a997'] - link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccizLM3y.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_1a997 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_1a997.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c00de'] + link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccmi4CH1.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_c00de /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o] arg [/usr/lib/gcc/arm-none-eabi/7.3.1/collect2] ==> ignore arg [-plugin] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so] ==> ignore arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccizLM3y.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccmi4CH1.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore @@ -110,13 +110,13 @@ Parsed C implicit link information from above output: arg [-plugin-opt=-pass-through=-lnosys] ==> ignore arg [-X] ==> ignore arg [-o] ==> ignore - arg [cmTC_1a997] ==> ignore + arg [cmTC_c00de] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crti.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o] ==> ignore arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1] arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] - arg [CMakeFiles/cmTC_1a997.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o] ==> ignore arg [--start-group] ==> ignore arg [-lgcc] ==> lib [gcc] arg [-lc] ==> lib [c] @@ -140,14 +140,14 @@ 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_62a16/fast" -/usr/bin/make -f CMakeFiles/cmTC_62a16.dir/build.make CMakeFiles/cmTC_62a16.dir/build +Run Build Command:"/usr/bin/make" "cmTC_a3da3/fast" +/usr/bin/make -f CMakeFiles/cmTC_a3da3.dir/build.make CMakeFiles/cmTC_a3da3.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_62a16.dir/feature_tests.c.o -/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_62a16.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c -Linking C executable cmTC_62a16 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_62a16.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_62a16.dir/feature_tests.c.o -o cmTC_62a16 +Building C object CMakeFiles/cmTC_a3da3.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_a3da3.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_a3da3 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a3da3.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_a3da3.dir/feature_tests.c.o -o cmTC_a3da3 make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -160,14 +160,14 @@ 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_e8a4a/fast" -/usr/bin/make -f CMakeFiles/cmTC_e8a4a.dir/build.make CMakeFiles/cmTC_e8a4a.dir/build +Run Build Command:"/usr/bin/make" "cmTC_444a2/fast" +/usr/bin/make -f CMakeFiles/cmTC_444a2.dir/build.make CMakeFiles/cmTC_444a2.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_e8a4a.dir/feature_tests.c.o -/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_e8a4a.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c -Linking C executable cmTC_e8a4a -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e8a4a.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_e8a4a.dir/feature_tests.c.o -o cmTC_e8a4a +Building C object CMakeFiles/cmTC_444a2.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_444a2.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_444a2 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_444a2.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_444a2.dir/feature_tests.c.o -o cmTC_444a2 make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -180,14 +180,14 @@ 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_ac057/fast" -/usr/bin/make -f CMakeFiles/cmTC_ac057.dir/build.make CMakeFiles/cmTC_ac057.dir/build +Run Build Command:"/usr/bin/make" "cmTC_31fb0/fast" +/usr/bin/make -f CMakeFiles/cmTC_31fb0.dir/build.make CMakeFiles/cmTC_31fb0.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_ac057.dir/feature_tests.c.o -/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_ac057.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c -Linking C executable cmTC_ac057 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ac057.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_ac057.dir/feature_tests.c.o -o cmTC_ac057 +Building C object CMakeFiles/cmTC_31fb0.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_31fb0.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_31fb0 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_31fb0.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_31fb0.dir/feature_tests.c.o -o cmTC_31fb0 make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -198,28 +198,28 @@ 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_9a694/fast" -/usr/bin/make -f CMakeFiles/cmTC_9a694.dir/build.make CMakeFiles/cmTC_9a694.dir/build +Run Build Command:"/usr/bin/make" "cmTC_f2a35/fast" +/usr/bin/make -f CMakeFiles/cmTC_f2a35.dir/build.make CMakeFiles/cmTC_f2a35.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_9a694.dir/testCXXCompiler.cxx.o -/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_9a694.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx -Linking CXX executable cmTC_9a694 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9a694.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_9a694.dir/testCXXCompiler.cxx.o -o cmTC_9a694 +Building CXX object CMakeFiles/cmTC_f2a35.dir/testCXXCompiler.cxx.o +/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_f2a35.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_f2a35 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f2a35.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_f2a35.dir/testCXXCompiler.cxx.o -o cmTC_f2a35 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_9fa42/fast" -/usr/bin/make -f CMakeFiles/cmTC_9fa42.dir/build.make CMakeFiles/cmTC_9fa42.dir/build +Run Build Command:"/usr/bin/make" "cmTC_56b49/fast" +/usr/bin/make -f CMakeFiles/cmTC_56b49.dir/build.make CMakeFiles/cmTC_56b49.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_9fa42.dir/CMakeCXXCompilerABI.cpp.o -/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_9fa42.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp -Linking CXX executable cmTC_9fa42 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9fa42.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_9fa42.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_9fa42 +Building CXX object CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_56b49 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_56b49.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_56b49 Using built-in specs. Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence @@ -231,9 +231,9 @@ Thread model: single gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/ -COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_9fa42' - /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccfBAnP7.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_9fa42 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_9fa42.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o -COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_9fa42' +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_56b49' + /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccJiZHFC.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_56b49 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_56b49' make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -241,14 +241,14 @@ 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_9fa42/fast"] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_9fa42.dir/build.make CMakeFiles/cmTC_9fa42.dir/build] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_56b49/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_56b49.dir/build.make CMakeFiles/cmTC_56b49.dir/build] ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_9fa42.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_9fa42.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Linking CXX executable cmTC_9fa42] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9fa42.dir/link.txt --verbose=1] - ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_9fa42.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_9fa42 ] + ignore line: [Building CXX object CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_56b49] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_56b49.dir/link.txt --verbose=1] + ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_56b49 ] ignore line: [Using built-in specs.] ignore line: [Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs] ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] @@ -260,13 +260,13 @@ Parsed CXX implicit link information from above output: ignore line: [gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) ] ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_9fa42'] - link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccfBAnP7.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_9fa42 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_9fa42.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_56b49'] + link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccJiZHFC.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_56b49 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o] arg [/usr/lib/gcc/arm-none-eabi/7.3.1/collect2] ==> ignore arg [-plugin] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so] ==> ignore arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccfBAnP7.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccJiZHFC.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore @@ -274,13 +274,13 @@ Parsed CXX implicit link information from above output: arg [-plugin-opt=-pass-through=-lnosys] ==> ignore arg [-X] ==> ignore arg [-o] ==> ignore - arg [cmTC_9fa42] ==> ignore + arg [cmTC_56b49] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crti.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o] ==> ignore arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1] arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] - arg [CMakeFiles/cmTC_9fa42.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore arg [-lstdc++] ==> lib [stdc++] arg [-lm] ==> lib [m] arg [--start-group] ==> ignore @@ -306,14 +306,14 @@ 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_865e2/fast" -/usr/bin/make -f CMakeFiles/cmTC_865e2.dir/build.make CMakeFiles/cmTC_865e2.dir/build +Run Build Command:"/usr/bin/make" "cmTC_b97e7/fast" +/usr/bin/make -f CMakeFiles/cmTC_b97e7.dir/build.make CMakeFiles/cmTC_b97e7.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_865e2.dir/feature_tests.cxx.o -/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_865e2.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_865e2 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_865e2.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_865e2.dir/feature_tests.cxx.o -o cmTC_865e2 +Building CXX object CMakeFiles/cmTC_b97e7.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_b97e7.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_b97e7 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b97e7.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_b97e7.dir/feature_tests.cxx.o -o cmTC_b97e7 make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -379,14 +379,14 @@ 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_ef11e/fast" -/usr/bin/make -f CMakeFiles/cmTC_ef11e.dir/build.make CMakeFiles/cmTC_ef11e.dir/build +Run Build Command:"/usr/bin/make" "cmTC_05073/fast" +/usr/bin/make -f CMakeFiles/cmTC_05073.dir/build.make CMakeFiles/cmTC_05073.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_ef11e.dir/feature_tests.cxx.o -/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_ef11e.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_ef11e -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ef11e.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_ef11e.dir/feature_tests.cxx.o -o cmTC_ef11e +Building CXX object CMakeFiles/cmTC_05073.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_05073.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_05073 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_05073.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_05073.dir/feature_tests.cxx.o -o cmTC_05073 make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -452,14 +452,14 @@ 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_4dc65/fast" -/usr/bin/make -f CMakeFiles/cmTC_4dc65.dir/build.make CMakeFiles/cmTC_4dc65.dir/build +Run Build Command:"/usr/bin/make" "cmTC_215a3/fast" +/usr/bin/make -f CMakeFiles/cmTC_215a3.dir/build.make CMakeFiles/cmTC_215a3.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_4dc65.dir/feature_tests.cxx.o -/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_4dc65.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_4dc65 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4dc65.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_4dc65.dir/feature_tests.cxx.o -o cmTC_4dc65 +Building CXX object CMakeFiles/cmTC_215a3.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_215a3.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_215a3 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_215a3.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_215a3.dir/feature_tests.cxx.o -o cmTC_215a3 make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' @@ -525,14 +525,14 @@ 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_3fc0a/fast" -/usr/bin/make -f CMakeFiles/cmTC_3fc0a.dir/build.make CMakeFiles/cmTC_3fc0a.dir/build +Run Build Command:"/usr/bin/make" "cmTC_2c26a/fast" +/usr/bin/make -f CMakeFiles/cmTC_2c26a.dir/build.make CMakeFiles/cmTC_2c26a.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_3fc0a.dir/feature_tests.cxx.o -/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_3fc0a.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_3fc0a -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3fc0a.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_3fc0a.dir/feature_tests.cxx.o -o cmTC_3fc0a +Building CXX object CMakeFiles/cmTC_2c26a.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_2c26a.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_2c26a +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c26a.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_2c26a.dir/feature_tests.cxx.o -o cmTC_2c26a make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp' diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake index df712cd..a8e58ad 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile.cmake @@ -8,12 +8,14 @@ set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") set(CMAKE_MAKEFILE_DEPENDS "CMakeCache.txt" "../CMakeLists.txt" + "../Drivers/CMakeLists.txt" "CMakeFiles/3.13.4/CMakeASMCompiler.cmake" "CMakeFiles/3.13.4/CMakeCCompiler.cmake" "CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" "CMakeFiles/3.13.4/CMakeSystem.cmake" "CMakeFiles/feature_tests.c" "CMakeFiles/feature_tests.cxx" + "../startup/CMakeLists.txt" "/usr/share/cmake-3.13/Modules/CMakeASMCompiler.cmake.in" "/usr/share/cmake-3.13/Modules/CMakeASMInformation.cmake" "/usr/share/cmake-3.13/Modules/CMakeCCompiler.cmake.in" @@ -118,12 +120,15 @@ set(CMAKE_MAKEFILE_PRODUCTS "CMakeFiles/3.13.4/CMakeCCompiler.cmake" "CMakeFiles/3.13.4/CMakeCXXCompiler.cmake" "CMakeFiles/CMakeDirectoryInformation.cmake" + "Drivers/CMakeFiles/CMakeDirectoryInformation.cmake" + "startup/CMakeFiles/CMakeDirectoryInformation.cmake" ) # Dependency information for all targets: set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/cpp_functions.dir/DependInfo.cmake" "CMakeFiles/refOvenTest.out.dir/DependInfo.cmake" - "CMakeFiles/assembly_functions.dir/DependInfo.cmake" "CMakeFiles/c_functions.dir/DependInfo.cmake" + "CMakeFiles/cpp_functions.dir/DependInfo.cmake" + "Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" + "startup/CMakeFiles/Startup.dir/DependInfo.cmake" ) diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 index 4fef586..9480674 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 +++ b/bsl/cmakeLowLayer/build/CMakeFiles/Makefile2 @@ -64,14 +64,92 @@ 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 +#============================================================================= +# Target rules for target CMakeFiles/refOvenTest.out.dir + +# All Build rule for target. +CMakeFiles/refOvenTest.out.dir/all: CMakeFiles/c_functions.dir/all +CMakeFiles/refOvenTest.out.dir/all: CMakeFiles/cpp_functions.dir/all +CMakeFiles/refOvenTest.out.dir/all: Drivers/CMakeFiles/Drivers.dir/all +CMakeFiles/refOvenTest.out.dir/all: startup/CMakeFiles/Startup.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=14,15 "Built target refOvenTest.out" +.PHONY : CMakeFiles/refOvenTest.out.dir/all + +# Include target in all. +all: CMakeFiles/refOvenTest.out.dir/all + +.PHONY : 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 15 + $(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 + +# Convenience name for target. +refOvenTest.out: CMakeFiles/refOvenTest.out.dir/rule + +.PHONY : refOvenTest.out + +# clean rule for target. +CMakeFiles/refOvenTest.out.dir/clean: + $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/clean +.PHONY : CMakeFiles/refOvenTest.out.dir/clean + +# clean rule for target. +clean: CMakeFiles/refOvenTest.out.dir/clean + +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/c_functions.dir + +# All Build rule for target. +CMakeFiles/c_functions.dir/all: Drivers/CMakeFiles/Drivers.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=9,10,11 "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 9 + $(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 + #============================================================================= # Target rules for target CMakeFiles/cpp_functions.dir # All Build rule for target. -CMakeFiles/cpp_functions.dir/all: +CMakeFiles/cpp_functions.dir/all: CMakeFiles/c_functions.dir/all +CMakeFiles/cpp_functions.dir/all: Drivers/CMakeFiles/Drivers.dir/all $(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/depend $(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=11,12 "Built target cpp_functions" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=12,13 "Built target cpp_functions" .PHONY : CMakeFiles/cpp_functions.dir/all # Include target in all. @@ -81,7 +159,7 @@ all: CMakeFiles/cpp_functions.dir/all # Build rule for subdir invocation for target. CMakeFiles/cpp_functions.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 2 + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 11 $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/cpp_functions.dir/all $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0 .PHONY : CMakeFiles/cpp_functions.dir/rule @@ -102,115 +180,112 @@ clean: CMakeFiles/cpp_functions.dir/clean .PHONY : clean #============================================================================= -# Target rules for target CMakeFiles/refOvenTest.out.dir +# Directory level rules for directory Drivers -# All Build rule for target. -CMakeFiles/refOvenTest.out.dir/all: CMakeFiles/c_functions.dir/all -CMakeFiles/refOvenTest.out.dir/all: CMakeFiles/cpp_functions.dir/all -CMakeFiles/refOvenTest.out.dir/all: CMakeFiles/assembly_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=13,14 "Built target refOvenTest.out" -.PHONY : CMakeFiles/refOvenTest.out.dir/all +# Convenience name for "all" pass in the directory. +Drivers/all: Drivers/CMakeFiles/Drivers.dir/all -# Include target in all. -all: CMakeFiles/refOvenTest.out.dir/all +.PHONY : Drivers/all -.PHONY : all +# Convenience name for "clean" pass in the directory. +Drivers/clean: Drivers/CMakeFiles/Drivers.dir/clean -# 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 14 - $(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 +.PHONY : Drivers/clean -# Convenience name for target. -refOvenTest.out: CMakeFiles/refOvenTest.out.dir/rule +# Convenience name for "preinstall" pass in the directory. +Drivers/preinstall: -.PHONY : refOvenTest.out - -# clean rule for target. -CMakeFiles/refOvenTest.out.dir/clean: - $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/clean -.PHONY : CMakeFiles/refOvenTest.out.dir/clean - -# clean rule for target. -clean: CMakeFiles/refOvenTest.out.dir/clean - -.PHONY : clean +.PHONY : Drivers/preinstall #============================================================================= -# Target rules for target CMakeFiles/assembly_functions.dir +# Target rules for target Drivers/CMakeFiles/Drivers.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 +Drivers/CMakeFiles/Drivers.dir/all: + $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/depend + $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.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 "Built target Drivers" +.PHONY : Drivers/CMakeFiles/Drivers.dir/all # Include target in all. -all: CMakeFiles/assembly_functions.dir/all +all: Drivers/CMakeFiles/Drivers.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 +Drivers/CMakeFiles/Drivers.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 6 + $(MAKE) -f CMakeFiles/Makefile2 Drivers/CMakeFiles/Drivers.dir/all $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0 -.PHONY : CMakeFiles/assembly_functions.dir/rule +.PHONY : Drivers/CMakeFiles/Drivers.dir/rule # Convenience name for target. -assembly_functions: CMakeFiles/assembly_functions.dir/rule +Drivers: Drivers/CMakeFiles/Drivers.dir/rule -.PHONY : assembly_functions +.PHONY : Drivers # 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 +Drivers/CMakeFiles/Drivers.dir/clean: + $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/clean +.PHONY : Drivers/CMakeFiles/Drivers.dir/clean # clean rule for target. -clean: CMakeFiles/assembly_functions.dir/clean +clean: Drivers/CMakeFiles/Drivers.dir/clean .PHONY : clean #============================================================================= -# Target rules for target CMakeFiles/c_functions.dir +# Directory level rules for directory startup + +# Convenience name for "all" pass in the directory. +startup/all: startup/CMakeFiles/Startup.dir/all + +.PHONY : startup/all + +# Convenience name for "clean" pass in the directory. +startup/clean: startup/CMakeFiles/Startup.dir/clean + +.PHONY : startup/clean + +# Convenience name for "preinstall" pass in the directory. +startup/preinstall: + +.PHONY : startup/preinstall + +#============================================================================= +# Target rules for target startup/CMakeFiles/Startup.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 +startup/CMakeFiles/Startup.dir/all: + $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/depend + $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=7,8 "Built target Startup" +.PHONY : startup/CMakeFiles/Startup.dir/all # Include target in all. -all: CMakeFiles/c_functions.dir/all +all: startup/CMakeFiles/Startup.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 +startup/CMakeFiles/Startup.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 startup/CMakeFiles/Startup.dir/all $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0 -.PHONY : CMakeFiles/c_functions.dir/rule +.PHONY : startup/CMakeFiles/Startup.dir/rule # Convenience name for target. -c_functions: CMakeFiles/c_functions.dir/rule +Startup: startup/CMakeFiles/Startup.dir/rule -.PHONY : c_functions +.PHONY : Startup # 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 +startup/CMakeFiles/Startup.dir/clean: + $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/clean +.PHONY : startup/CMakeFiles/Startup.dir/clean # clean rule for target. -clean: CMakeFiles/c_functions.dir/clean +clean: startup/CMakeFiles/Startup.dir/clean .PHONY : clean diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/TargetDirectories.txt b/bsl/cmakeLowLayer/build/CMakeFiles/TargetDirectories.txt index ebd260b..6379f65 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/TargetDirectories.txt +++ b/bsl/cmakeLowLayer/build/CMakeFiles/TargetDirectories.txt @@ -1,6 +1,11 @@ /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/rebuild_cache.dir /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/edit_cache.dir -/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir -/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir +/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir +/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/rebuild_cache.dir +/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir +/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/edit_cache.dir +/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/rebuild_cache.dir +/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir +/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/edit_cache.dir diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/build.make b/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/build.make deleted file mode 100644 index ca737fb..0000000 --- a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/build.make +++ /dev/null @@ -1,91 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.13 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - - -# A target that is always out of date. -cmake_force: - -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build - -# Include any dependencies generated for this target. -include CMakeFiles/assembly_functions.dir/depend.make - -# Include the progress variables for this target. -include CMakeFiles/assembly_functions.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/assembly_functions.dir/flags.make - -CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o: CMakeFiles/assembly_functions.dir/flags.make -CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o: ../startup/startup_stm32f042x6.s - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building ASM object CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o" - /usr/bin/arm-none-eabi-gcc $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o -c /home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s - -# Object files for target assembly_functions -assembly_functions_OBJECTS = \ -"CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o" - -# External object files for target assembly_functions -assembly_functions_EXTERNAL_OBJECTS = - -libassembly_functions.a: CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o -libassembly_functions.a: CMakeFiles/assembly_functions.dir/build.make -libassembly_functions.a: CMakeFiles/assembly_functions.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking ASM static library libassembly_functions.a" - $(CMAKE_COMMAND) -P CMakeFiles/assembly_functions.dir/cmake_clean_target.cmake - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/assembly_functions.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/assembly_functions.dir/build: libassembly_functions.a - -.PHONY : CMakeFiles/assembly_functions.dir/build - -CMakeFiles/assembly_functions.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/assembly_functions.dir/cmake_clean.cmake -.PHONY : CMakeFiles/assembly_functions.dir/clean - -CMakeFiles/assembly_functions.dir/depend: - cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/DependInfo.cmake --color=$(COLOR) -.PHONY : CMakeFiles/assembly_functions.dir/depend - diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/cmake_clean.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/cmake_clean.cmake deleted file mode 100644 index 510d6be..0000000 --- a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o" - "libassembly_functions.pdb" - "libassembly_functions.a" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ASM) - include(CMakeFiles/assembly_functions.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/cmake_clean_target.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/cmake_clean_target.cmake deleted file mode 100644 index b432038..0000000 --- a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libassembly_functions.a" -) diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/link.txt b/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/link.txt deleted file mode 100644 index cb1c232..0000000 --- a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/usr/bin/arm-none-eabi-ar cr libassembly_functions.a CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o -/usr/bin/arm-none-eabi-ranlib libassembly_functions.a diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/progress.make b/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/progress.make deleted file mode 100644 index abadeb0..0000000 --- a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 1 -CMAKE_PROGRESS_2 = 2 - diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/C.includecache b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/C.includecache index b95ae5d..f1bc1ef 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/C.includecache +++ b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/C.includecache @@ -160,42 +160,6 @@ 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 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake index 3b1ae4a..d2153a4 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake @@ -4,11 +4,6 @@ set(CMAKE_DEPENDS_LANGUAGES ) # 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" ) @@ -33,7 +28,6 @@ set(CMAKE_TARGET_DEFINITIONS_C # The include file search paths: set(CMAKE_C_TARGET_INCLUDE_PATH "../Inc" - "../cppSrc" "../Drivers/STM32F0xx_HAL_Driver/Inc" "../Drivers/CMSIS/Device/ST/STM32F0xx/Include" "../Drivers/CMSIS/Include" @@ -41,6 +35,7 @@ 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/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" ) # Fortran module output directory. diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/build.make b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/build.make index 9210b4c..e13611e 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/build.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/build.make @@ -83,94 +83,19 @@ 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" +"CMakeFiles/c_functions.dir/Src/system_stm32f0xx.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) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "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) diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/cmake_clean.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/cmake_clean.cmake index 9313766..ef73ec2 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/cmake_clean.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/cmake_clean.cmake @@ -1,11 +1,6 @@ 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" ) diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/depend.internal b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/depend.internal index 93c9154..9848243 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/depend.internal +++ b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/depend.internal @@ -1,79 +1,6 @@ # 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 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/depend.make b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/depend.make index 35231a7..c7e2ead 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/depend.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/depend.make @@ -1,79 +1,6 @@ # 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 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/flags.make b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/flags.make index 69fb28c..1eaf3ff 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/flags.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/flags.make @@ -6,5 +6,5 @@ C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=al 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/cppSrc -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_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 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/link.txt b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/link.txt index 9ada7c7..c6b317e 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/link.txt +++ b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/link.txt @@ -1,2 +1,2 @@ -/usr/bin/arm-none-eabi-ar qc libc_functions.a CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o CMakeFiles/c_functions.dir/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o +/usr/bin/arm-none-eabi-ar qc libc_functions.a CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o /usr/bin/arm-none-eabi-ranlib libc_functions.a diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/progress.make b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/progress.make index a716360..eaef64c 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/progress.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/progress.make @@ -1,9 +1,4 @@ -CMAKE_PROGRESS_1 = 3 -CMAKE_PROGRESS_2 = 4 -CMAKE_PROGRESS_3 = 5 -CMAKE_PROGRESS_4 = 6 -CMAKE_PROGRESS_5 = 7 -CMAKE_PROGRESS_6 = 8 -CMAKE_PROGRESS_7 = 9 -CMAKE_PROGRESS_8 = 10 +CMAKE_PROGRESS_1 = 9 +CMAKE_PROGRESS_2 = 10 +CMAKE_PROGRESS_3 = 11 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake index 642b08c..4516c55 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake @@ -26,8 +26,8 @@ set(CMAKE_TARGET_DEFINITIONS_CXX # The include file search paths: set(CMAKE_CXX_TARGET_INCLUDE_PATH - "../Inc" "../cppSrc" + "../Inc" "../Drivers/STM32F0xx_HAL_Driver/Inc" "../Drivers/CMSIS/Device/ST/STM32F0xx/Include" "../Drivers/CMSIS/Include" @@ -35,6 +35,8 @@ set(CMAKE_CXX_TARGET_INCLUDE_PATH # Targets to which this target links. set(CMAKE_TARGET_LINKED_INFO_FILES + "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake" + "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" ) # Fortran module output directory. diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/flags.make b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/flags.make index dcaf16e..cde8f57 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/flags.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/flags.make @@ -6,5 +6,5 @@ CXX_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color= CXX_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 -CXX_INCLUDES = -I/home/key/github/KED/bsl/cmakeLowLayer/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/cppSrc -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 +CXX_INCLUDES = -I/home/key/github/KED/bsl/cmakeLowLayer/cppSrc -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 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/progress.make b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/progress.make index 596289c..7df1340 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/progress.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/progress.make @@ -1,3 +1,3 @@ -CMAKE_PROGRESS_1 = 11 -CMAKE_PROGRESS_2 = 12 +CMAKE_PROGRESS_1 = 12 +CMAKE_PROGRESS_2 = 13 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/progress.marks b/bsl/cmakeLowLayer/build/CMakeFiles/progress.marks index 8351c19..60d3b2f 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/progress.marks +++ b/bsl/cmakeLowLayer/build/CMakeFiles/progress.marks @@ -1 +1 @@ -14 +15 diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake index 9f38a33..b1dae39 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake @@ -27,17 +27,18 @@ set(CMAKE_TARGET_DEFINITIONS_C # The include file search paths: set(CMAKE_C_TARGET_INCLUDE_PATH "../Inc" - "../cppSrc" "../Drivers/STM32F0xx_HAL_Driver/Inc" "../Drivers/CMSIS/Device/ST/STM32F0xx/Include" "../Drivers/CMSIS/Include" + "../cppSrc" ) # 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/startup/CMakeFiles/Startup.dir/DependInfo.cmake" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake" + "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" ) # Fortran module output directory. diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make index a538c70..ad65fe1 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/build.make @@ -79,9 +79,11 @@ refOvenTest_out_EXTERNAL_OBJECTS = refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Src/main.c.o refOvenTest.out: CMakeFiles/refOvenTest.out.dir/build.make -refOvenTest.out: libassembly_functions.a +refOvenTest.out: startup/libStartup.a refOvenTest.out: libc_functions.a refOvenTest.out: libcpp_functions.a +refOvenTest.out: libc_functions.a +refOvenTest.out: Drivers/libDrivers.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_2) "Linking CXX executable refOvenTest.out" $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/refOvenTest.out.dir/link.txt --verbose=$(VERBOSE) diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make index 69fb28c..89a39f5 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/flags.make @@ -6,5 +6,5 @@ C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=al 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/cppSrc -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_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 -I/home/key/github/KED/bsl/cmakeLowLayer/cppSrc diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/link.txt b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/link.txt index e3a42cb..b3abbe9 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/link.txt +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/link.txt @@ -1 +1 @@ -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/github/KED/bsl/cmakeLowLayer/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/Src/main.c.o -o refOvenTest.out libassembly_functions.a libc_functions.a libcpp_functions.a +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/github/KED/bsl/cmakeLowLayer/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/Src/main.c.o -o refOvenTest.out startup/libStartup.a libc_functions.a libcpp_functions.a libc_functions.a Drivers/libDrivers.a diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/progress.make b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/progress.make index d92f75a..8063b3b 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/progress.make +++ b/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir/progress.make @@ -1,3 +1,3 @@ -CMAKE_PROGRESS_1 = 13 -CMAKE_PROGRESS_2 = 14 +CMAKE_PROGRESS_1 = 14 +CMAKE_PROGRESS_2 = 15 diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/CMakeDirectoryInformation.cmake b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..77686e2 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl/cmakeLowLayer") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/cmakeLowLayer/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/C.includecache b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/C.includecache new file mode 100644 index 0000000..1ccf673 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/C.includecache @@ -0,0 +1,158 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +core_cm0.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h +system_stm32f0xx.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +stdint.h +- + +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +stm32f030x6.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h +stm32f030x8.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h +stm32f031x6.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h +stm32f038xx.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h +stm32f042x6.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +stm32f048xx.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h +stm32f051x8.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h +stm32f058xx.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h +stm32f070x6.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h +stm32f070xb.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h +stm32f071xb.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h +stm32f072xb.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h +stm32f078xx.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h +stm32f091xc.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h +stm32f098xx.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h +stm32f030xc.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h +stm32f0xx_hal.h +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h + +../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + +../Drivers/CMSIS/Include/cmsis_armcc.h + +../Drivers/CMSIS/Include/cmsis_armclang.h +arm_compat.h +- + +../Drivers/CMSIS/Include/cmsis_compiler.h +stdint.h +- +cmsis_armcc.h +../Drivers/CMSIS/Include/cmsis_armcc.h +cmsis_armclang.h +../Drivers/CMSIS/Include/cmsis_armclang.h +cmsis_gcc.h +../Drivers/CMSIS/Include/cmsis_gcc.h +cmsis_iccarm.h +- +cmsis_ccs.h +- +cmsis_csm.h +- + +../Drivers/CMSIS/Include/cmsis_gcc.h + +../Drivers/CMSIS/Include/cmsis_iccarm.h +iccarm_builtin.h +../Drivers/CMSIS/Include/iccarm_builtin.h +intrinsics.h +- + +../Drivers/CMSIS/Include/cmsis_version.h + +../Drivers/CMSIS/Include/core_cm0.h +stdint.h +- +cmsis_version.h +../Drivers/CMSIS/Include/cmsis_version.h +cmsis_compiler.h +../Drivers/CMSIS/Include/cmsis_compiler.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +stm32f0xx.h +../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h + +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c +stm32f0xx_ll_exti.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.h +stm32_assert.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h + +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c +stm32f0xx_ll_gpio.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.h +stm32f0xx_ll_bus.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h +stm32_assert.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h + +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c +stm32f0xx_ll_pwr.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.h +stm32f0xx_ll_bus.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_bus.h + +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c +stm32f0xx_ll_rcc.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h +stm32_assert.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h + +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c +stm32f0xx_ll_rcc.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.h +stm32f0xx_ll_utils.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.h +stm32f0xx_ll_system.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_system.h +stm32_assert.h +/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32_assert.h + diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake new file mode 100644 index 0000000..ff7bded --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake @@ -0,0 +1,43 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "C" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_C + "/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" + "/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" + ) +set(CMAKE_C_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_C + "DATA_CACHE_ENABLE=0" + "HSE_STARTUP_TIMEOUT=100" + "HSE_VALUE=8000000" + "HSI_VALUE=8000000" + "INSTRUCTION_CACHE_ENABLE=0" + "LSE_STARTUP_TIMEOUT=5000" + "LSE_VALUE=32768" + "LSI_VALUE=40000" + "PREFETCH_ENABLE=1" + "STM32F042x6" + "USE_FULL_LL_DRIVER" + "VDD_VALUE=3300" + ) + +# The include file search paths: +set(CMAKE_C_TARGET_INCLUDE_PATH + "../Drivers/CMSIS/Device/ST/STM32F0xx/Include" + "../Drivers/CMSIS/Include" + "../Drivers/STM32F0xx_HAL_Driver/Inc" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/build.make b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/build.make new file mode 100644 index 0000000..230429f --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/build.make @@ -0,0 +1,159 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build + +# Include any dependencies generated for this target. +include Drivers/CMakeFiles/Drivers.dir/depend.make + +# Include the progress variables for this target. +include Drivers/CMakeFiles/Drivers.dir/progress.make + +# Include the compile flags for this target's objects. +include Drivers/CMakeFiles/Drivers.dir/flags.make + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: Drivers/CMakeFiles/Drivers.dir/flags.make +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: Drivers/CMakeFiles/Drivers.dir/flags.make +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: Drivers/CMakeFiles/Drivers.dir/flags.make +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: Drivers/CMakeFiles/Drivers.dir/flags.make +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: Drivers/CMakeFiles/Drivers.dir/flags.make +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c > CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c -o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s + +# Object files for target Drivers +Drivers_OBJECTS = \ +"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" \ +"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" \ +"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" \ +"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" \ +"CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" + +# External object files for target Drivers +Drivers_EXTERNAL_OBJECTS = + +Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o +Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o +Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o +Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o +Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o +Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/build.make +Drivers/libDrivers.a: Drivers/CMakeFiles/Drivers.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking C static library libDrivers.a" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean_target.cmake + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Drivers.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +Drivers/CMakeFiles/Drivers.dir/build: Drivers/libDrivers.a + +.PHONY : Drivers/CMakeFiles/Drivers.dir/build + +Drivers/CMakeFiles/Drivers.dir/clean: + cd /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers && $(CMAKE_COMMAND) -P CMakeFiles/Drivers.dir/cmake_clean.cmake +.PHONY : Drivers/CMakeFiles/Drivers.dir/clean + +Drivers/CMakeFiles/Drivers.dir/depend: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer/Drivers /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : Drivers/CMakeFiles/Drivers.dir/depend + diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/cmake_clean.cmake b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/cmake_clean.cmake new file mode 100644 index 0000000..5d27d46 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +file(REMOVE_RECURSE + "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o" + "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o" + "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o" + "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o" + "CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o" + "libDrivers.pdb" + "libDrivers.a" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/Drivers.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/cmake_clean_target.cmake b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..25fe979 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libDrivers.a" +) diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/depend.internal b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/depend.internal new file mode 100644 index 0000000..d517e69 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/depend.internal @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../Drivers/CMSIS/Include/cmsis_armcc.h + ../Drivers/CMSIS/Include/cmsis_armclang.h + ../Drivers/CMSIS/Include/cmsis_compiler.h + ../Drivers/CMSIS/Include/cmsis_gcc.h + ../Drivers/CMSIS/Include/cmsis_iccarm.h + ../Drivers/CMSIS/Include/cmsis_version.h + ../Drivers/CMSIS/Include/core_cm0.h + ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h + /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../Drivers/CMSIS/Include/cmsis_armcc.h + ../Drivers/CMSIS/Include/cmsis_armclang.h + ../Drivers/CMSIS/Include/cmsis_compiler.h + ../Drivers/CMSIS/Include/cmsis_gcc.h + ../Drivers/CMSIS/Include/cmsis_iccarm.h + ../Drivers/CMSIS/Include/cmsis_version.h + ../Drivers/CMSIS/Include/core_cm0.h + ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h + ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h + /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../Drivers/CMSIS/Include/cmsis_armcc.h + ../Drivers/CMSIS/Include/cmsis_armclang.h + ../Drivers/CMSIS/Include/cmsis_compiler.h + ../Drivers/CMSIS/Include/cmsis_gcc.h + ../Drivers/CMSIS/Include/cmsis_iccarm.h + ../Drivers/CMSIS/Include/cmsis_version.h + ../Drivers/CMSIS/Include/core_cm0.h + ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h + ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h + /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../Drivers/CMSIS/Include/cmsis_armcc.h + ../Drivers/CMSIS/Include/cmsis_armclang.h + ../Drivers/CMSIS/Include/cmsis_compiler.h + ../Drivers/CMSIS/Include/cmsis_gcc.h + ../Drivers/CMSIS/Include/cmsis_iccarm.h + ../Drivers/CMSIS/Include/cmsis_version.h + ../Drivers/CMSIS/Include/core_cm0.h + ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h + /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../Drivers/CMSIS/Include/cmsis_armcc.h + ../Drivers/CMSIS/Include/cmsis_armclang.h + ../Drivers/CMSIS/Include/cmsis_compiler.h + ../Drivers/CMSIS/Include/cmsis_gcc.h + ../Drivers/CMSIS/Include/cmsis_iccarm.h + ../Drivers/CMSIS/Include/cmsis_version.h + ../Drivers/CMSIS/Include/core_cm0.h + ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h + ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h + ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h + /home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/depend.make b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/depend.make new file mode 100644 index 0000000..d443915 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/depend.make @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/cmsis_version.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/CMSIS/Include/core_cm0.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/cmsis_version.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/CMSIS/Include/core_cm0.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/cmsis_version.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/CMSIS/Include/core_cm0.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/cmsis_version.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/CMSIS/Include/core_cm0.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c + +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/cmsis_version.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/CMSIS/Include/core_cm0.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: ../Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c + diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/flags.make b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/flags.make new file mode 100644 index 0000000..21217c2 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +# compile C with /usr/bin/arm-none-eabi-gcc +C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections + +C_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300 + +C_INCLUDES = -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc + diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/link.txt b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/link.txt new file mode 100644 index 0000000..346bff8 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/arm-none-eabi-ar qc libDrivers.a CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o +/usr/bin/arm-none-eabi-ranlib libDrivers.a diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/progress.make b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/progress.make new file mode 100644 index 0000000..daba7fa --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/progress.make @@ -0,0 +1,7 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 + diff --git a/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/progress.marks b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/progress.marks new file mode 100644 index 0000000..1e8b314 --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/progress.marks @@ -0,0 +1 @@ +6 diff --git a/bsl/cmakeLowLayer/build/Drivers/Makefile b/bsl/cmakeLowLayer/build/Drivers/Makefile new file mode 100644 index 0000000..494e82a --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/Makefile @@ -0,0 +1,300 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles /home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/progress.marks + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +Drivers/CMakeFiles/Drivers.dir/rule: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Drivers/CMakeFiles/Drivers.dir/rule +.PHONY : Drivers/CMakeFiles/Drivers.dir/rule + +# Convenience name for target. +Drivers: Drivers/CMakeFiles/Drivers.dir/rule + +.PHONY : Drivers + +# fast build rule for target. +Drivers/fast: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/build +.PHONY : Drivers/fast + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o + +# target to build an object file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.o + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i + +# target to preprocess a source file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.i + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s + +# target to generate assembly for a file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.c.s + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o + +# target to build an object file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.o + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i + +# target to preprocess a source file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.i + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s + +# target to generate assembly for a file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.c.s + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o + +# target to build an object file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.o + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i + +# target to preprocess a source file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.i + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s + +# target to generate assembly for a file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.c.s + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o + +# target to build an object file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.o + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i + +# target to preprocess a source file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.i + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s + +# target to generate assembly for a file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.c.s + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o + +# target to build an object file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.o + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i + +# target to preprocess a source file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i + +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s: STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s + +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s + +# target to generate assembly for a file +STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s +.PHONY : STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... rebuild_cache" + @echo "... Drivers" + @echo "... edit_cache" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.o" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i" + @echo "... STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/bsl/cmakeLowLayer/build/Drivers/cmake_install.cmake b/bsl/cmakeLowLayer/build/Drivers/cmake_install.cmake new file mode 100644 index 0000000..d4f089a --- /dev/null +++ b/bsl/cmakeLowLayer/build/Drivers/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/key/github/KED/bsl/cmakeLowLayer/Drivers + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/bsl/cmakeLowLayer/build/Makefile b/bsl/cmakeLowLayer/build/Makefile index 693276e..ac67967 100644 --- a/bsl/cmakeLowLayer/build/Makefile +++ b/bsl/cmakeLowLayer/build/Makefile @@ -110,19 +110,6 @@ depend: $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 .PHONY : depend -#============================================================================= -# Target rules for targets named cpp_functions - -# Build rule for target. -cpp_functions: cmake_check_build_system - $(MAKE) -f CMakeFiles/Makefile2 cpp_functions -.PHONY : cpp_functions - -# fast build rule for target. -cpp_functions/fast: - $(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/build -.PHONY : cpp_functions/fast - #============================================================================= # Target rules for targets named refOvenTest.out @@ -136,19 +123,6 @@ 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 @@ -162,140 +136,44 @@ 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/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 - -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.i - -# target to preprocess a source file -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 - -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_exti.s - -# target to generate assembly for a file -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 - -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o - -# target to build an object file -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 - -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i - -# target to preprocess a source file -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 - -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s - -# target to generate assembly for a file -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 - -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o - -# target to build an object file -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 - -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i - -# target to preprocess a source file -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 - -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s - -# target to generate assembly for a file -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 - -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o - -# target to build an object file -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 - -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i - -# target to preprocess a source file -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 - -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s - -# target to generate assembly for a file -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 +#============================================================================= +# Target rules for targets named cpp_functions -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o +# Build rule for target. +cpp_functions: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 cpp_functions +.PHONY : cpp_functions -# target to build an object file -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 +# fast build rule for target. +cpp_functions/fast: + $(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/build +.PHONY : cpp_functions/fast -Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.i +#============================================================================= +# Target rules for targets named Drivers -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i +# Build rule for target. +Drivers: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 Drivers +.PHONY : Drivers -# target to preprocess a source file -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 +# fast build rule for target. +Drivers/fast: + $(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/build +.PHONY : Drivers/fast -Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.c.s +#============================================================================= +# Target rules for targets named Startup -.PHONY : Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s +# Build rule for target. +Startup: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 Startup +.PHONY : Startup -# target to generate assembly for a file -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 +# fast build rule for target. +Startup/fast: + $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/build +.PHONY : Startup/fast Src/main.o: Src/main.c.o @@ -405,15 +283,6 @@ cppSrc/transfer.cpp.s: $(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.s .PHONY : cppSrc/transfer.cpp.s -startup/startup_stm32f042x6.o: startup/startup_stm32f042x6.s.o - -.PHONY : startup/startup_stm32f042x6.o - -# target to build an object file -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 help: @echo "The following are some of the valid targets for this Makefile:" @@ -422,25 +291,11 @@ help: @echo "... depend" @echo "... rebuild_cache" @echo "... edit_cache" - @echo "... cpp_functions" @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" - @echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.o" - @echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.i" - @echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_gpio.s" - @echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.o" - @echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.i" - @echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_pwr.s" - @echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.o" - @echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.i" - @echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_rcc.s" - @echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.o" - @echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.i" - @echo "... Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_ll_utils.s" + @echo "... cpp_functions" + @echo "... Drivers" + @echo "... Startup" @echo "... Src/main.o" @echo "... Src/main.i" @echo "... Src/main.s" @@ -453,7 +308,6 @@ help: @echo "... cppSrc/transfer.o" @echo "... cppSrc/transfer.i" @echo "... cppSrc/transfer.s" - @echo "... startup/startup_stm32f042x6.o" .PHONY : help diff --git a/bsl/cmakeLowLayer/build/cmake_install.cmake b/bsl/cmakeLowLayer/build/cmake_install.cmake index 7ea4cc1..b6c3ca7 100644 --- a/bsl/cmakeLowLayer/build/cmake_install.cmake +++ b/bsl/cmakeLowLayer/build/cmake_install.cmake @@ -37,6 +37,13 @@ if(NOT DEFINED CMAKE_CROSSCOMPILING) set(CMAKE_CROSSCOMPILING "TRUE") endif() +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/cmake_install.cmake") + include("/home/key/github/KED/bsl/cmakeLowLayer/build/startup/cmake_install.cmake") + +endif() + if(CMAKE_INSTALL_COMPONENT) set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") else() diff --git a/bsl/cmakeLowLayer/build/refOvenTest.bin b/bsl/cmakeLowLayer/build/refOvenTest.bin index e9ed596..63488d3 100755 Binary files a/bsl/cmakeLowLayer/build/refOvenTest.bin and b/bsl/cmakeLowLayer/build/refOvenTest.bin differ diff --git a/bsl/cmakeLowLayer/build/startup/CMakeFiles/CMakeDirectoryInformation.cmake b/bsl/cmakeLowLayer/build/startup/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..77686e2 --- /dev/null +++ b/bsl/cmakeLowLayer/build/startup/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl/cmakeLowLayer") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/cmakeLowLayer/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/ASM.includecache b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/ASM.includecache similarity index 100% rename from bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/ASM.includecache rename to bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/ASM.includecache diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/DependInfo.cmake b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/DependInfo.cmake similarity index 87% rename from bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/DependInfo.cmake rename to bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/DependInfo.cmake index e4318e6..9ca08b6 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/DependInfo.cmake +++ b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/DependInfo.cmake @@ -4,7 +4,7 @@ set(CMAKE_DEPENDS_LANGUAGES ) # 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" + "/home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s" "/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o" ) set(CMAKE_ASM_COMPILER_ID "GNU") diff --git a/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/build.make b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/build.make new file mode 100644 index 0000000..5aa53c9 --- /dev/null +++ b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/build.make @@ -0,0 +1,91 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build + +# Include any dependencies generated for this target. +include startup/CMakeFiles/Startup.dir/depend.make + +# Include the progress variables for this target. +include startup/CMakeFiles/Startup.dir/progress.make + +# Include the compile flags for this target's objects. +include startup/CMakeFiles/Startup.dir/flags.make + +startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: startup/CMakeFiles/Startup.dir/flags.make +startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: ../startup/startup_stm32f042x6.s + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building ASM object startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/startup && /usr/bin/arm-none-eabi-gcc $(ASM_DEFINES) $(ASM_INCLUDES) $(ASM_FLAGS) -o CMakeFiles/Startup.dir/startup_stm32f042x6.s.o -c /home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s + +# Object files for target Startup +Startup_OBJECTS = \ +"CMakeFiles/Startup.dir/startup_stm32f042x6.s.o" + +# External object files for target Startup +Startup_EXTERNAL_OBJECTS = + +startup/libStartup.a: startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o +startup/libStartup.a: startup/CMakeFiles/Startup.dir/build.make +startup/libStartup.a: startup/CMakeFiles/Startup.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking ASM static library libStartup.a" + cd /home/key/github/KED/bsl/cmakeLowLayer/build/startup && $(CMAKE_COMMAND) -P CMakeFiles/Startup.dir/cmake_clean_target.cmake + cd /home/key/github/KED/bsl/cmakeLowLayer/build/startup && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Startup.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +startup/CMakeFiles/Startup.dir/build: startup/libStartup.a + +.PHONY : startup/CMakeFiles/Startup.dir/build + +startup/CMakeFiles/Startup.dir/clean: + cd /home/key/github/KED/bsl/cmakeLowLayer/build/startup && $(CMAKE_COMMAND) -P CMakeFiles/Startup.dir/cmake_clean.cmake +.PHONY : startup/CMakeFiles/Startup.dir/clean + +startup/CMakeFiles/Startup.dir/depend: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer/startup /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build/startup /home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : startup/CMakeFiles/Startup.dir/depend + diff --git a/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/cmake_clean.cmake b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/cmake_clean.cmake new file mode 100644 index 0000000..34180a6 --- /dev/null +++ b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/Startup.dir/startup_stm32f042x6.s.o" + "libStartup.pdb" + "libStartup.a" +) + +# Per-language clean rules from dependency scanning. +foreach(lang ASM) + include(CMakeFiles/Startup.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/cmake_clean_target.cmake b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..a43aec4 --- /dev/null +++ b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libStartup.a" +) diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/depend.internal b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/depend.internal similarity index 72% rename from bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/depend.internal rename to bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/depend.internal index 190b8b0..16572d9 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/depend.internal +++ b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/depend.internal @@ -1,5 +1,5 @@ # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.13 -CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o +startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o /home/key/github/KED/bsl/cmakeLowLayer/startup/startup_stm32f042x6.s diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/depend.make b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/depend.make similarity index 50% rename from bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/depend.make rename to bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/depend.make index cfa2d9b..bbd3047 100644 --- a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/depend.make +++ b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/depend.make @@ -1,5 +1,5 @@ # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.13 -CMakeFiles/assembly_functions.dir/startup/startup_stm32f042x6.s.o: ../startup/startup_stm32f042x6.s +startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o: ../startup/startup_stm32f042x6.s diff --git a/bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/flags.make b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/flags.make similarity index 100% rename from bsl/cmakeLowLayer/build/CMakeFiles/assembly_functions.dir/flags.make rename to bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/flags.make diff --git a/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/link.txt b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/link.txt new file mode 100644 index 0000000..6990d0a --- /dev/null +++ b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/arm-none-eabi-ar cr libStartup.a CMakeFiles/Startup.dir/startup_stm32f042x6.s.o +/usr/bin/arm-none-eabi-ranlib libStartup.a diff --git a/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/progress.make b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/progress.make new file mode 100644 index 0000000..72bb7dd --- /dev/null +++ b/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 7 +CMAKE_PROGRESS_2 = 8 + diff --git a/bsl/cmakeLowLayer/build/startup/CMakeFiles/progress.marks b/bsl/cmakeLowLayer/build/startup/CMakeFiles/progress.marks new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/bsl/cmakeLowLayer/build/startup/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/bsl/cmakeLowLayer/build/startup/Makefile b/bsl/cmakeLowLayer/build/startup/Makefile new file mode 100644 index 0000000..adb9dc2 --- /dev/null +++ b/bsl/cmakeLowLayer/build/startup/Makefile @@ -0,0 +1,160 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.13 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles /home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/progress.marks + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +startup/CMakeFiles/Startup.dir/rule: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 startup/CMakeFiles/Startup.dir/rule +.PHONY : startup/CMakeFiles/Startup.dir/rule + +# Convenience name for target. +Startup: startup/CMakeFiles/Startup.dir/rule + +.PHONY : Startup + +# fast build rule for target. +Startup/fast: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/build +.PHONY : Startup/fast + +startup_stm32f042x6.o: startup_stm32f042x6.s.o + +.PHONY : startup_stm32f042x6.o + +# target to build an object file +startup_stm32f042x6.s.o: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/startup_stm32f042x6.s.o +.PHONY : startup_stm32f042x6.s.o + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... rebuild_cache" + @echo "... Startup" + @echo "... edit_cache" + @echo "... startup_stm32f042x6.o" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/bsl/cmakeLowLayer/build/startup/cmake_install.cmake b/bsl/cmakeLowLayer/build/startup/cmake_install.cmake new file mode 100644 index 0000000..8185e03 --- /dev/null +++ b/bsl/cmakeLowLayer/build/startup/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/key/github/KED/bsl/cmakeLowLayer/startup + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/bsl/cmakeLowLayer/cppSrc/CMakeLists.txt b/bsl/cmakeLowLayer/cppSrc/CMakeLists.txt index b38d7a5..6f11806 100644 --- a/bsl/cmakeLowLayer/cppSrc/CMakeLists.txt +++ b/bsl/cmakeLowLayer/cppSrc/CMakeLists.txt @@ -1,36 +1,15 @@ -project(cpp_sources) +project(CppSources) -set(CPU_MCU "-mcpu=cortex-m0") - -set(CPP_FLAGS - ${CPU_MCU} - -mthumb #Instruction set : https://stackoverflow.com/questions/10638130/what-is-the-arm-thumb-instruction-set - -Wall #Error : If you don't know this one please chek basical compiling - -fdata-sections #Optimization : Linker can perform optimizations to improve locality of reference in the instruction space. - -fdiagnostics-color=always - -ffunction-sections #Optimization : used with -fdata-sections - $<$:-O -g -gdwarf-2>) - -set(CPP_DEFS - -DUSE_FULL_LL_DRIVER - -DSTM32F042x6 - -DHSE_VALUE=8000000 - -DHSE_STARTUP_TIMEOUT=100 - -DLSE_STARTUP_TIMEOUT=5000 - -DLSE_VALUE=32768 - -DHSI_VALUE=8000000 - -DLSI_VALUE=40000 - -DVDD_VALUE=3300 - -DPREFETCH_ENABLE=1 - -DINSTRUCTION_CACHE_ENABLE=0 - -DDATA_CACHE_ENABLE=0) set (CPP_SOURCES transfer.cpp) -set (CPP_INCLUDES .) +set (CPP_INCLUDES .)#${C_INCLUDES} ) +set (CPP_FLAGS ${C_FLAGS}) +set (CPP_DEFS ${C_DEFS}) add_library(${PROJECT_NAME} ${CPP_SOURCES}) -target_compile_options(${PROJECT_NAME} PUBLIC ${CPP_FLAGS}) -target_compile_definitions(${PROJECT_NAME} PUBLIC ${CPP_DEFS}) +target_compile_options(${PROJECT_NAME} PRIVATE ${CPP_FLAGS}) +target_compile_definitions(${PROJECT_NAME} PRIVATE ${CPP_DEFS}) target_include_directories(${PROJECT_NAME} PUBLIC ${CPP_INCLUDES}) -add_library(sub::stmSources ALIAS ${PROJECT_NAME}) +#To create an alias to be used on the main CMAKE. +add_library(sub::cppSources ALIAS ${PROJECT_NAME}) diff --git a/bsl/cmakeLowLayer/startup/CMakeLists.txt b/bsl/cmakeLowLayer/startup/CMakeLists.txt new file mode 100644 index 0000000..5e57df4 --- /dev/null +++ b/bsl/cmakeLowLayer/startup/CMakeLists.txt @@ -0,0 +1,13 @@ +project(Startup) + +set (AS_SOURCES startup_stm32f042x6.s) +set (AS_INCLUDES ${C_INCLUDES}) +set (AS_FLAGS -x assembler-with-cpp ${C_FLAGS}) +set (AS_DEFS ${C_DEFS}) + +add_library(${PROJECT_NAME} ${AS_SOURCES}) +target_compile_options(${PROJECT_NAME} PRIVATE ${AS_FLAGS}) +target_compile_definitions(${PROJECT_NAME} PRIVATE ${AS_DEFS}) + +#To create an alias to be used on the main CMAKE. +add_library(sub::startup ALIAS ${PROJECT_NAME})