Fixes & memory optimizations (#540)
- Disable BlueTooth driver by default, to ensure it doesn't allocate memory - Update BlueTooth settings app behaviour to make sure it starts/stops the devices - Disable SPI RAM usage for ST7789 as it broke App Hub - Reduce T-Display and T-Deck display buffers from 1/3rd to 1/10th of resolution - Enabled dynamic buffers for MbedTLS to optimize memory - TLS 1.3 did not work with dynamic buffers: downgrade to 1.2 for now - WiFi is now enabled from the Boot app callback to the WiFi service, instead of the WiFi service start() function. This avoids a lockup when WiFi is started by the service while the Boot app is updating the WiFi settings.
This commit is contained in:
committed by
GitHub
parent
599fa46766
commit
d3439f6f45
@@ -0,0 +1,447 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.3
|
||||
|
||||
# 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:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#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 rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/ken/Projects/Tactility
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/ken/Projects/Tactility/build-tests
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# 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 --regenerate-during-build -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 list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(CMAKE_COMMAND) -E cmake_progress_start /home/ken/Projects/Tactility/build-tests/CMakeFiles /home/ken/Projects/Tactility/build-tests/TactilityCore//CMakeFiles/progress.marks
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 TactilityCore/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/ken/Projects/Tactility/build-tests/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 TactilityCore/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 TactilityCore/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 TactilityCore/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Convenience name for target.
|
||||
TactilityCore/CMakeFiles/TactilityCore.dir/rule:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 TactilityCore/CMakeFiles/TactilityCore.dir/rule
|
||||
.PHONY : TactilityCore/CMakeFiles/TactilityCore.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
TactilityCore: TactilityCore/CMakeFiles/TactilityCore.dir/rule
|
||||
.PHONY : TactilityCore
|
||||
|
||||
# fast build rule for target.
|
||||
TactilityCore/fast:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/build
|
||||
.PHONY : TactilityCore/fast
|
||||
|
||||
Source/Bundle.o: Source/Bundle.cpp.o
|
||||
.PHONY : Source/Bundle.o
|
||||
|
||||
# target to build an object file
|
||||
Source/Bundle.cpp.o:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/Bundle.cpp.o
|
||||
.PHONY : Source/Bundle.cpp.o
|
||||
|
||||
Source/Bundle.i: Source/Bundle.cpp.i
|
||||
.PHONY : Source/Bundle.i
|
||||
|
||||
# target to preprocess a source file
|
||||
Source/Bundle.cpp.i:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/Bundle.cpp.i
|
||||
.PHONY : Source/Bundle.cpp.i
|
||||
|
||||
Source/Bundle.s: Source/Bundle.cpp.s
|
||||
.PHONY : Source/Bundle.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
Source/Bundle.cpp.s:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/Bundle.cpp.s
|
||||
.PHONY : Source/Bundle.cpp.s
|
||||
|
||||
Source/CpuAffinity.o: Source/CpuAffinity.cpp.o
|
||||
.PHONY : Source/CpuAffinity.o
|
||||
|
||||
# target to build an object file
|
||||
Source/CpuAffinity.cpp.o:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/CpuAffinity.cpp.o
|
||||
.PHONY : Source/CpuAffinity.cpp.o
|
||||
|
||||
Source/CpuAffinity.i: Source/CpuAffinity.cpp.i
|
||||
.PHONY : Source/CpuAffinity.i
|
||||
|
||||
# target to preprocess a source file
|
||||
Source/CpuAffinity.cpp.i:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/CpuAffinity.cpp.i
|
||||
.PHONY : Source/CpuAffinity.cpp.i
|
||||
|
||||
Source/CpuAffinity.s: Source/CpuAffinity.cpp.s
|
||||
.PHONY : Source/CpuAffinity.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
Source/CpuAffinity.cpp.s:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/CpuAffinity.cpp.s
|
||||
.PHONY : Source/CpuAffinity.cpp.s
|
||||
|
||||
Source/StringUtils.o: Source/StringUtils.cpp.o
|
||||
.PHONY : Source/StringUtils.o
|
||||
|
||||
# target to build an object file
|
||||
Source/StringUtils.cpp.o:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/StringUtils.cpp.o
|
||||
.PHONY : Source/StringUtils.cpp.o
|
||||
|
||||
Source/StringUtils.i: Source/StringUtils.cpp.i
|
||||
.PHONY : Source/StringUtils.i
|
||||
|
||||
# target to preprocess a source file
|
||||
Source/StringUtils.cpp.i:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/StringUtils.cpp.i
|
||||
.PHONY : Source/StringUtils.cpp.i
|
||||
|
||||
Source/StringUtils.s: Source/StringUtils.cpp.s
|
||||
.PHONY : Source/StringUtils.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
Source/StringUtils.cpp.s:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/StringUtils.cpp.s
|
||||
.PHONY : Source/StringUtils.cpp.s
|
||||
|
||||
Source/crypt/Crypt.o: Source/crypt/Crypt.cpp.o
|
||||
.PHONY : Source/crypt/Crypt.o
|
||||
|
||||
# target to build an object file
|
||||
Source/crypt/Crypt.cpp.o:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/crypt/Crypt.cpp.o
|
||||
.PHONY : Source/crypt/Crypt.cpp.o
|
||||
|
||||
Source/crypt/Crypt.i: Source/crypt/Crypt.cpp.i
|
||||
.PHONY : Source/crypt/Crypt.i
|
||||
|
||||
# target to preprocess a source file
|
||||
Source/crypt/Crypt.cpp.i:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/crypt/Crypt.cpp.i
|
||||
.PHONY : Source/crypt/Crypt.cpp.i
|
||||
|
||||
Source/crypt/Crypt.s: Source/crypt/Crypt.cpp.s
|
||||
.PHONY : Source/crypt/Crypt.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
Source/crypt/Crypt.cpp.s:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/crypt/Crypt.cpp.s
|
||||
.PHONY : Source/crypt/Crypt.cpp.s
|
||||
|
||||
Source/crypt/Hash.o: Source/crypt/Hash.cpp.o
|
||||
.PHONY : Source/crypt/Hash.o
|
||||
|
||||
# target to build an object file
|
||||
Source/crypt/Hash.cpp.o:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/crypt/Hash.cpp.o
|
||||
.PHONY : Source/crypt/Hash.cpp.o
|
||||
|
||||
Source/crypt/Hash.i: Source/crypt/Hash.cpp.i
|
||||
.PHONY : Source/crypt/Hash.i
|
||||
|
||||
# target to preprocess a source file
|
||||
Source/crypt/Hash.cpp.i:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/crypt/Hash.cpp.i
|
||||
.PHONY : Source/crypt/Hash.cpp.i
|
||||
|
||||
Source/crypt/Hash.s: Source/crypt/Hash.cpp.s
|
||||
.PHONY : Source/crypt/Hash.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
Source/crypt/Hash.cpp.s:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/crypt/Hash.cpp.s
|
||||
.PHONY : Source/crypt/Hash.cpp.s
|
||||
|
||||
Source/file/File.o: Source/file/File.cpp.o
|
||||
.PHONY : Source/file/File.o
|
||||
|
||||
# target to build an object file
|
||||
Source/file/File.cpp.o:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/file/File.cpp.o
|
||||
.PHONY : Source/file/File.cpp.o
|
||||
|
||||
Source/file/File.i: Source/file/File.cpp.i
|
||||
.PHONY : Source/file/File.i
|
||||
|
||||
# target to preprocess a source file
|
||||
Source/file/File.cpp.i:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/file/File.cpp.i
|
||||
.PHONY : Source/file/File.cpp.i
|
||||
|
||||
Source/file/File.s: Source/file/File.cpp.s
|
||||
.PHONY : Source/file/File.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
Source/file/File.cpp.s:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/file/File.cpp.s
|
||||
.PHONY : Source/file/File.cpp.s
|
||||
|
||||
Source/kernel/PanicHandler.o: Source/kernel/PanicHandler.cpp.o
|
||||
.PHONY : Source/kernel/PanicHandler.o
|
||||
|
||||
# target to build an object file
|
||||
Source/kernel/PanicHandler.cpp.o:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/kernel/PanicHandler.cpp.o
|
||||
.PHONY : Source/kernel/PanicHandler.cpp.o
|
||||
|
||||
Source/kernel/PanicHandler.i: Source/kernel/PanicHandler.cpp.i
|
||||
.PHONY : Source/kernel/PanicHandler.i
|
||||
|
||||
# target to preprocess a source file
|
||||
Source/kernel/PanicHandler.cpp.i:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/kernel/PanicHandler.cpp.i
|
||||
.PHONY : Source/kernel/PanicHandler.cpp.i
|
||||
|
||||
Source/kernel/PanicHandler.s: Source/kernel/PanicHandler.cpp.s
|
||||
.PHONY : Source/kernel/PanicHandler.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
Source/kernel/PanicHandler.cpp.s:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/kernel/PanicHandler.cpp.s
|
||||
.PHONY : Source/kernel/PanicHandler.cpp.s
|
||||
|
||||
Source/kernel/Platform.o: Source/kernel/Platform.cpp.o
|
||||
.PHONY : Source/kernel/Platform.o
|
||||
|
||||
# target to build an object file
|
||||
Source/kernel/Platform.cpp.o:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/kernel/Platform.cpp.o
|
||||
.PHONY : Source/kernel/Platform.cpp.o
|
||||
|
||||
Source/kernel/Platform.i: Source/kernel/Platform.cpp.i
|
||||
.PHONY : Source/kernel/Platform.i
|
||||
|
||||
# target to preprocess a source file
|
||||
Source/kernel/Platform.cpp.i:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/kernel/Platform.cpp.i
|
||||
.PHONY : Source/kernel/Platform.cpp.i
|
||||
|
||||
Source/kernel/Platform.s: Source/kernel/Platform.cpp.s
|
||||
.PHONY : Source/kernel/Platform.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
Source/kernel/Platform.cpp.s:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/kernel/Platform.cpp.s
|
||||
.PHONY : Source/kernel/Platform.cpp.s
|
||||
|
||||
Source/kernel/critical/Critical.o: Source/kernel/critical/Critical.cpp.o
|
||||
.PHONY : Source/kernel/critical/Critical.o
|
||||
|
||||
# target to build an object file
|
||||
Source/kernel/critical/Critical.cpp.o:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/kernel/critical/Critical.cpp.o
|
||||
.PHONY : Source/kernel/critical/Critical.cpp.o
|
||||
|
||||
Source/kernel/critical/Critical.i: Source/kernel/critical/Critical.cpp.i
|
||||
.PHONY : Source/kernel/critical/Critical.i
|
||||
|
||||
# target to preprocess a source file
|
||||
Source/kernel/critical/Critical.cpp.i:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/kernel/critical/Critical.cpp.i
|
||||
.PHONY : Source/kernel/critical/Critical.cpp.i
|
||||
|
||||
Source/kernel/critical/Critical.s: Source/kernel/critical/Critical.cpp.s
|
||||
.PHONY : Source/kernel/critical/Critical.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
Source/kernel/critical/Critical.cpp.s:
|
||||
cd /home/ken/Projects/Tactility/build-tests && $(MAKE) $(MAKESILENT) -f TactilityCore/CMakeFiles/TactilityCore.dir/build.make TactilityCore/CMakeFiles/TactilityCore.dir/Source/kernel/critical/Critical.cpp.s
|
||||
.PHONY : Source/kernel/critical/Critical.cpp.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 "... edit_cache"
|
||||
@echo "... install"
|
||||
@echo "... install/local"
|
||||
@echo "... install/strip"
|
||||
@echo "... list_install_components"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... TactilityCore"
|
||||
@echo "... Source/Bundle.o"
|
||||
@echo "... Source/Bundle.i"
|
||||
@echo "... Source/Bundle.s"
|
||||
@echo "... Source/CpuAffinity.o"
|
||||
@echo "... Source/CpuAffinity.i"
|
||||
@echo "... Source/CpuAffinity.s"
|
||||
@echo "... Source/StringUtils.o"
|
||||
@echo "... Source/StringUtils.i"
|
||||
@echo "... Source/StringUtils.s"
|
||||
@echo "... Source/crypt/Crypt.o"
|
||||
@echo "... Source/crypt/Crypt.i"
|
||||
@echo "... Source/crypt/Crypt.s"
|
||||
@echo "... Source/crypt/Hash.o"
|
||||
@echo "... Source/crypt/Hash.i"
|
||||
@echo "... Source/crypt/Hash.s"
|
||||
@echo "... Source/file/File.o"
|
||||
@echo "... Source/file/File.i"
|
||||
@echo "... Source/file/File.s"
|
||||
@echo "... Source/kernel/PanicHandler.o"
|
||||
@echo "... Source/kernel/PanicHandler.i"
|
||||
@echo "... Source/kernel/PanicHandler.s"
|
||||
@echo "... Source/kernel/Platform.o"
|
||||
@echo "... Source/kernel/Platform.i"
|
||||
@echo "... Source/kernel/Platform.s"
|
||||
@echo "... Source/kernel/critical/Critical.o"
|
||||
@echo "... Source/kernel/critical/Critical.i"
|
||||
@echo "... Source/kernel/critical/Critical.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/ken/Projects/Tactility/build-tests && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
# Install script for directory: /home/ken/Projects/Tactility/TactilityCore
|
||||
|
||||
# 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 "0")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
# Set path to fallback-tool for dependency-resolution.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||
endif()
|
||||
|
||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||
if(CMAKE_INSTALL_LOCAL_ONLY)
|
||||
file(WRITE "/home/ken/Projects/Tactility/build-tests/TactilityCore/install_local_manifest.txt"
|
||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||
endif()
|
||||
Reference in New Issue
Block a user