run.sh
Sync public mirror / sync (push) Failing after 27s

CMake stores the absolute folder path, this now get deleted in run.sh, so it can be called on deffrent computers without problems
This commit is contained in:
2026-01-02 19:34:37 +01:00
parent e5f8c91be4
commit 32ba0518fa
25 changed files with 345 additions and 276 deletions
+10 -10
View File
@@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/newton/Documents/Git/Flux
CMAKE_SOURCE_DIR = /home/atlas/Documents/Git/Flux
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/newton/Documents/Git/Flux/build
CMAKE_BINARY_DIR = /home/atlas/Documents/Git/Flux/build
#=============================================================================
# Targets provided globally by CMake.
@@ -87,14 +87,14 @@ rebuild_cache/fast: rebuild_cache
# The main all target
all: cmake_check_build_system
cd /home/newton/Documents/Git/Flux/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/newton/Documents/Git/Flux/build/CMakeFiles /home/newton/Documents/Git/Flux/build/examples//CMakeFiles/progress.marks
cd /home/newton/Documents/Git/Flux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/newton/Documents/Git/Flux/build/CMakeFiles 0
cd /home/atlas/Documents/Git/Flux/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/atlas/Documents/Git/Flux/build/CMakeFiles /home/atlas/Documents/Git/Flux/build/examples//CMakeFiles/progress.marks
cd /home/atlas/Documents/Git/Flux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/atlas/Documents/Git/Flux/build/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /home/newton/Documents/Git/Flux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/clean
cd /home/atlas/Documents/Git/Flux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/clean
.PHONY : clean
# The main clean target
@@ -103,17 +103,17 @@ clean/fast: clean
# Prepare targets for installation.
preinstall: all
cd /home/newton/Documents/Git/Flux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/preinstall
cd /home/atlas/Documents/Git/Flux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /home/newton/Documents/Git/Flux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/preinstall
cd /home/atlas/Documents/Git/Flux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /home/newton/Documents/Git/Flux/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
cd /home/atlas/Documents/Git/Flux/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Help Target
@@ -135,6 +135,6 @@ help:
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /home/newton/Documents/Git/Flux/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
cd /home/atlas/Documents/Git/Flux/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system