"Last commit before focus on major development (Var, Array etc.)"

This commit is contained in:
William
2024-04-04 23:14:47 +08:00
parent 4f7df68a3c
commit f70175ede3
28 changed files with 2931 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
"/home/william/Documents/Projects/Compound/src/test.c" "CMakeFiles/CompoundTest.dir/src/test.c.o" "gcc" "CMakeFiles/CompoundTest.dir/src/test.c.o.d"
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
)
# Targets to which this target links which contain Fortran sources.
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,110 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.29
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# 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/william/Documents/Projects/Compound
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/william/Documents/Projects/Compound
# Include any dependencies generated for this target.
include CMakeFiles/CompoundTest.dir/depend.make
# Include any dependencies generated by the compiler for this target.
include CMakeFiles/CompoundTest.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/CompoundTest.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/CompoundTest.dir/flags.make
CMakeFiles/CompoundTest.dir/src/test.c.o: CMakeFiles/CompoundTest.dir/flags.make
CMakeFiles/CompoundTest.dir/src/test.c.o: src/test.c
CMakeFiles/CompoundTest.dir/src/test.c.o: CMakeFiles/CompoundTest.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/william/Documents/Projects/Compound/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/CompoundTest.dir/src/test.c.o"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/CompoundTest.dir/src/test.c.o -MF CMakeFiles/CompoundTest.dir/src/test.c.o.d -o CMakeFiles/CompoundTest.dir/src/test.c.o -c /home/william/Documents/Projects/Compound/src/test.c
CMakeFiles/CompoundTest.dir/src/test.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/CompoundTest.dir/src/test.c.i"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/william/Documents/Projects/Compound/src/test.c > CMakeFiles/CompoundTest.dir/src/test.c.i
CMakeFiles/CompoundTest.dir/src/test.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/CompoundTest.dir/src/test.c.s"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/william/Documents/Projects/Compound/src/test.c -o CMakeFiles/CompoundTest.dir/src/test.c.s
# Object files for target CompoundTest
CompoundTest_OBJECTS = \
"CMakeFiles/CompoundTest.dir/src/test.c.o"
# External object files for target CompoundTest
CompoundTest_EXTERNAL_OBJECTS =
CompoundTest: CMakeFiles/CompoundTest.dir/src/test.c.o
CompoundTest: CMakeFiles/CompoundTest.dir/build.make
CompoundTest: CMakeFiles/CompoundTest.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/william/Documents/Projects/Compound/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable CompoundTest"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/CompoundTest.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/CompoundTest.dir/build: CompoundTest
.PHONY : CMakeFiles/CompoundTest.dir/build
CMakeFiles/CompoundTest.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/CompoundTest.dir/cmake_clean.cmake
.PHONY : CMakeFiles/CompoundTest.dir/clean
CMakeFiles/CompoundTest.dir/depend:
cd /home/william/Documents/Projects/Compound && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/william/Documents/Projects/Compound /home/william/Documents/Projects/Compound /home/william/Documents/Projects/Compound /home/william/Documents/Projects/Compound /home/william/Documents/Projects/Compound/CMakeFiles/CompoundTest.dir/DependInfo.cmake "--color=$(COLOR)"
.PHONY : CMakeFiles/CompoundTest.dir/depend

View File

@@ -0,0 +1,11 @@
file(REMOVE_RECURSE
"CMakeFiles/CompoundTest.dir/src/test.c.o"
"CMakeFiles/CompoundTest.dir/src/test.c.o.d"
"CompoundTest"
"CompoundTest.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/CompoundTest.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,2 @@
# Empty compiler generated dependencies file for CompoundTest.
# This may be replaced when dependencies are built.

View File

@@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for compiler generated dependencies management for CompoundTest.

View File

@@ -0,0 +1,2 @@
# Empty dependencies file for CompoundTest.
# This may be replaced when dependencies are built.

View File

@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.29
# compile C with /usr/bin/cc
C_DEFINES =
C_INCLUDES =
C_FLAGS =

View File

@@ -0,0 +1 @@
/usr/bin/cc -rdynamic CMakeFiles/CompoundTest.dir/src/test.c.o -o CompoundTest

View File

@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2

Binary file not shown.

View File

@@ -0,0 +1,18 @@
CMakeFiles/CompoundTest.dir/src/test.c.o: \
/home/william/Documents/Projects/Compound/src/test.c \
/usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/bits/libc-header-start.h /usr/include/features.h \
/usr/include/features-time64.h /usr/include/bits/wordsize.h \
/usr/include/bits/timesize.h /usr/include/sys/cdefs.h \
/usr/include/bits/long-double.h /usr/include/gnu/stubs.h \
/usr/include/gnu/stubs-64.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/13.2.1/include/stddef.h \
/usr/lib/gcc/x86_64-pc-linux-gnu/13.2.1/include/stdarg.h \
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
/usr/include/bits/time64.h /usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
/usr/include/bits/floatn-common.h