Implement initial profile reading and writing with little-endian offsets and CLI tool

This commit is contained in:
Aodhan Collins
2026-02-22 17:53:05 +00:00
parent 224271e639
commit db5c3505da
72 changed files with 7090 additions and 126 deletions

View File

@@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/alexander/Projects/azeron-linux")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/mnt/alexander/Projects/azeron-linux/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})

View File

@@ -0,0 +1,26 @@
# 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
"/mnt/alexander/Projects/azeron-linux/azeron-cli/commands.c" "azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o" "gcc" "azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o.d"
"/mnt/alexander/Projects/azeron-linux/azeron-cli/main.c" "azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o" "gcc" "azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o.d"
"/mnt/alexander/Projects/azeron-linux/azeron-cli/utils.c" "azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o" "gcc" "azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o.d"
"" "azeron-cli/azeron-cli" "gcc" "azeron-cli/CMakeFiles/azeron-cli.dir/link.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,147 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
# 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 = /mnt/alexander/Projects/azeron-linux
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /mnt/alexander/Projects/azeron-linux/build
# Include any dependencies generated for this target.
include azeron-cli/CMakeFiles/azeron-cli.dir/depend.make
# Include any dependencies generated by the compiler for this target.
include azeron-cli/CMakeFiles/azeron-cli.dir/compiler_depend.make
# Include the progress variables for this target.
include azeron-cli/CMakeFiles/azeron-cli.dir/progress.make
# Include the compile flags for this target's objects.
include azeron-cli/CMakeFiles/azeron-cli.dir/flags.make
azeron-cli/CMakeFiles/azeron-cli.dir/codegen:
.PHONY : azeron-cli/CMakeFiles/azeron-cli.dir/codegen
azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o: azeron-cli/CMakeFiles/azeron-cli.dir/flags.make
azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o: /mnt/alexander/Projects/azeron-linux/azeron-cli/main.c
azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o: azeron-cli/CMakeFiles/azeron-cli.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/mnt/alexander/Projects/azeron-linux/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o"
cd /mnt/alexander/Projects/azeron-linux/build/azeron-cli && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o -MF CMakeFiles/azeron-cli.dir/main.c.o.d -o CMakeFiles/azeron-cli.dir/main.c.o -c /mnt/alexander/Projects/azeron-linux/azeron-cli/main.c
azeron-cli/CMakeFiles/azeron-cli.dir/main.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/azeron-cli.dir/main.c.i"
cd /mnt/alexander/Projects/azeron-linux/build/azeron-cli && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/alexander/Projects/azeron-linux/azeron-cli/main.c > CMakeFiles/azeron-cli.dir/main.c.i
azeron-cli/CMakeFiles/azeron-cli.dir/main.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/azeron-cli.dir/main.c.s"
cd /mnt/alexander/Projects/azeron-linux/build/azeron-cli && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/alexander/Projects/azeron-linux/azeron-cli/main.c -o CMakeFiles/azeron-cli.dir/main.c.s
azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o: azeron-cli/CMakeFiles/azeron-cli.dir/flags.make
azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o: /mnt/alexander/Projects/azeron-linux/azeron-cli/commands.c
azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o: azeron-cli/CMakeFiles/azeron-cli.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/mnt/alexander/Projects/azeron-linux/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o"
cd /mnt/alexander/Projects/azeron-linux/build/azeron-cli && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o -MF CMakeFiles/azeron-cli.dir/commands.c.o.d -o CMakeFiles/azeron-cli.dir/commands.c.o -c /mnt/alexander/Projects/azeron-linux/azeron-cli/commands.c
azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/azeron-cli.dir/commands.c.i"
cd /mnt/alexander/Projects/azeron-linux/build/azeron-cli && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/alexander/Projects/azeron-linux/azeron-cli/commands.c > CMakeFiles/azeron-cli.dir/commands.c.i
azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/azeron-cli.dir/commands.c.s"
cd /mnt/alexander/Projects/azeron-linux/build/azeron-cli && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/alexander/Projects/azeron-linux/azeron-cli/commands.c -o CMakeFiles/azeron-cli.dir/commands.c.s
azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o: azeron-cli/CMakeFiles/azeron-cli.dir/flags.make
azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o: /mnt/alexander/Projects/azeron-linux/azeron-cli/utils.c
azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o: azeron-cli/CMakeFiles/azeron-cli.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/mnt/alexander/Projects/azeron-linux/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o"
cd /mnt/alexander/Projects/azeron-linux/build/azeron-cli && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o -MF CMakeFiles/azeron-cli.dir/utils.c.o.d -o CMakeFiles/azeron-cli.dir/utils.c.o -c /mnt/alexander/Projects/azeron-linux/azeron-cli/utils.c
azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/azeron-cli.dir/utils.c.i"
cd /mnt/alexander/Projects/azeron-linux/build/azeron-cli && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/alexander/Projects/azeron-linux/azeron-cli/utils.c > CMakeFiles/azeron-cli.dir/utils.c.i
azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/azeron-cli.dir/utils.c.s"
cd /mnt/alexander/Projects/azeron-linux/build/azeron-cli && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/alexander/Projects/azeron-linux/azeron-cli/utils.c -o CMakeFiles/azeron-cli.dir/utils.c.s
# Object files for target azeron-cli
azeron__cli_OBJECTS = \
"CMakeFiles/azeron-cli.dir/main.c.o" \
"CMakeFiles/azeron-cli.dir/commands.c.o" \
"CMakeFiles/azeron-cli.dir/utils.c.o"
# External object files for target azeron-cli
azeron__cli_EXTERNAL_OBJECTS =
azeron-cli/azeron-cli: azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o
azeron-cli/azeron-cli: azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o
azeron-cli/azeron-cli: azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o
azeron-cli/azeron-cli: azeron-cli/CMakeFiles/azeron-cli.dir/build.make
azeron-cli/azeron-cli: azeron-cli/CMakeFiles/azeron-cli.dir/compiler_depend.ts
azeron-cli/azeron-cli: libazeron/libazeron.so.1.0.0
azeron-cli/azeron-cli: azeron-cli/CMakeFiles/azeron-cli.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/mnt/alexander/Projects/azeron-linux/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking C executable azeron-cli"
cd /mnt/alexander/Projects/azeron-linux/build/azeron-cli && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/azeron-cli.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
azeron-cli/CMakeFiles/azeron-cli.dir/build: azeron-cli/azeron-cli
.PHONY : azeron-cli/CMakeFiles/azeron-cli.dir/build
azeron-cli/CMakeFiles/azeron-cli.dir/clean:
cd /mnt/alexander/Projects/azeron-linux/build/azeron-cli && $(CMAKE_COMMAND) -P CMakeFiles/azeron-cli.dir/cmake_clean.cmake
.PHONY : azeron-cli/CMakeFiles/azeron-cli.dir/clean
azeron-cli/CMakeFiles/azeron-cli.dir/depend:
cd /mnt/alexander/Projects/azeron-linux/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /mnt/alexander/Projects/azeron-linux /mnt/alexander/Projects/azeron-linux/azeron-cli /mnt/alexander/Projects/azeron-linux/build /mnt/alexander/Projects/azeron-linux/build/azeron-cli /mnt/alexander/Projects/azeron-linux/build/azeron-cli/CMakeFiles/azeron-cli.dir/DependInfo.cmake "--color=$(COLOR)"
.PHONY : azeron-cli/CMakeFiles/azeron-cli.dir/depend

View File

@@ -0,0 +1,16 @@
file(REMOVE_RECURSE
"CMakeFiles/azeron-cli.dir/link.d"
"CMakeFiles/azeron-cli.dir/commands.c.o"
"CMakeFiles/azeron-cli.dir/commands.c.o.d"
"CMakeFiles/azeron-cli.dir/main.c.o"
"CMakeFiles/azeron-cli.dir/main.c.o.d"
"CMakeFiles/azeron-cli.dir/utils.c.o"
"CMakeFiles/azeron-cli.dir/utils.c.o.d"
"azeron-cli"
"azeron-cli.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/azeron-cli.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,50 @@
azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o: \
/mnt/alexander/Projects/azeron-linux/azeron-cli/commands.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-redhat-linux/15/include/stddef.h \
/usr/lib/gcc/x86_64-redhat-linux/15/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 /usr/include/bits/stdio.h \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
/usr/include/sys/select.h /usr/include/bits/select.h \
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/struct_timespec.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h \
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \
/usr/include/string.h /usr/include/bits/types/locale_t.h \
/usr/include/bits/types/__locale_t.h /usr/include/strings.h \
/mnt/alexander/Projects/azeron-linux/libazeron/azeron.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdint.h \
/usr/include/stdint.h /usr/include/bits/wchar.h \
/usr/include/bits/stdint-uintn.h /usr/include/bits/stdint-least.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdbool.h \
/usr/include/json-c/json.h /usr/include/json-c/arraylist.h \
/usr/include/json-c/debug.h /usr/include/json-c/json_c_version.h \
/usr/include/json-c/json_object.h /usr/include/json-c/json_inttypes.h \
/usr/include/json-c/json_config.h /usr/include/inttypes.h \
/usr/include/json-c/json_types.h /usr/include/json-c/printbuf.h \
/usr/include/json-c/json_object_iterator.h \
/usr/include/json-c/json_patch.h /usr/include/json-c/json_pointer.h \
/usr/include/json-c/json_tokener.h /usr/include/json-c/json_util.h \
/usr/include/json-c/linkhash.h

View File

@@ -0,0 +1,263 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o
/mnt/alexander/Projects/azeron-linux/azeron-cli/commands.c
/mnt/alexander/Projects/azeron-linux/libazeron/azeron.h
/usr/include/alloca.h
/usr/include/bits/atomic_wide_counter.h
/usr/include/bits/byteswap.h
/usr/include/bits/endian.h
/usr/include/bits/endianness.h
/usr/include/bits/floatn-common.h
/usr/include/bits/floatn.h
/usr/include/bits/libc-header-start.h
/usr/include/bits/long-double.h
/usr/include/bits/pthreadtypes-arch.h
/usr/include/bits/pthreadtypes.h
/usr/include/bits/select.h
/usr/include/bits/stdint-intn.h
/usr/include/bits/stdint-least.h
/usr/include/bits/stdint-uintn.h
/usr/include/bits/stdio.h
/usr/include/bits/stdio_lim.h
/usr/include/bits/stdlib-bsearch.h
/usr/include/bits/stdlib-float.h
/usr/include/bits/struct_mutex.h
/usr/include/bits/struct_rwlock.h
/usr/include/bits/thread-shared-types.h
/usr/include/bits/time64.h
/usr/include/bits/timesize.h
/usr/include/bits/types.h
/usr/include/bits/types/FILE.h
/usr/include/bits/types/__FILE.h
/usr/include/bits/types/__fpos64_t.h
/usr/include/bits/types/__fpos_t.h
/usr/include/bits/types/__locale_t.h
/usr/include/bits/types/__mbstate_t.h
/usr/include/bits/types/__sigset_t.h
/usr/include/bits/types/clock_t.h
/usr/include/bits/types/clockid_t.h
/usr/include/bits/types/cookie_io_functions_t.h
/usr/include/bits/types/locale_t.h
/usr/include/bits/types/sigset_t.h
/usr/include/bits/types/struct_FILE.h
/usr/include/bits/types/struct_timespec.h
/usr/include/bits/types/struct_timeval.h
/usr/include/bits/types/time_t.h
/usr/include/bits/types/timer_t.h
/usr/include/bits/typesizes.h
/usr/include/bits/uintn-identity.h
/usr/include/bits/waitflags.h
/usr/include/bits/waitstatus.h
/usr/include/bits/wchar.h
/usr/include/bits/wordsize.h
/usr/include/endian.h
/usr/include/features-time64.h
/usr/include/features.h
/usr/include/gnu/stubs-64.h
/usr/include/gnu/stubs.h
/usr/include/inttypes.h
/usr/include/json-c/arraylist.h
/usr/include/json-c/debug.h
/usr/include/json-c/json.h
/usr/include/json-c/json_c_version.h
/usr/include/json-c/json_config.h
/usr/include/json-c/json_inttypes.h
/usr/include/json-c/json_object.h
/usr/include/json-c/json_object_iterator.h
/usr/include/json-c/json_patch.h
/usr/include/json-c/json_pointer.h
/usr/include/json-c/json_tokener.h
/usr/include/json-c/json_types.h
/usr/include/json-c/json_util.h
/usr/include/json-c/linkhash.h
/usr/include/json-c/printbuf.h
/usr/include/stdc-predef.h
/usr/include/stdint.h
/usr/include/stdio.h
/usr/include/stdlib.h
/usr/include/string.h
/usr/include/strings.h
/usr/include/sys/cdefs.h
/usr/include/sys/select.h
/usr/include/sys/types.h
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdarg.h
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdbool.h
/usr/lib/gcc/x86_64-redhat-linux/15/include/stddef.h
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdint.h
azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o
/mnt/alexander/Projects/azeron-linux/azeron-cli/main.c
/mnt/alexander/Projects/azeron-linux/libazeron/azeron.h
/usr/include/alloca.h
/usr/include/bits/atomic_wide_counter.h
/usr/include/bits/byteswap.h
/usr/include/bits/endian.h
/usr/include/bits/endianness.h
/usr/include/bits/floatn-common.h
/usr/include/bits/floatn.h
/usr/include/bits/getopt_core.h
/usr/include/bits/getopt_ext.h
/usr/include/bits/libc-header-start.h
/usr/include/bits/long-double.h
/usr/include/bits/pthreadtypes-arch.h
/usr/include/bits/pthreadtypes.h
/usr/include/bits/select.h
/usr/include/bits/stdint-intn.h
/usr/include/bits/stdint-least.h
/usr/include/bits/stdint-uintn.h
/usr/include/bits/stdio.h
/usr/include/bits/stdio_lim.h
/usr/include/bits/stdlib-bsearch.h
/usr/include/bits/stdlib-float.h
/usr/include/bits/struct_mutex.h
/usr/include/bits/struct_rwlock.h
/usr/include/bits/thread-shared-types.h
/usr/include/bits/time64.h
/usr/include/bits/timesize.h
/usr/include/bits/types.h
/usr/include/bits/types/FILE.h
/usr/include/bits/types/__FILE.h
/usr/include/bits/types/__fpos64_t.h
/usr/include/bits/types/__fpos_t.h
/usr/include/bits/types/__locale_t.h
/usr/include/bits/types/__mbstate_t.h
/usr/include/bits/types/__sigset_t.h
/usr/include/bits/types/clock_t.h
/usr/include/bits/types/clockid_t.h
/usr/include/bits/types/cookie_io_functions_t.h
/usr/include/bits/types/locale_t.h
/usr/include/bits/types/sigset_t.h
/usr/include/bits/types/struct_FILE.h
/usr/include/bits/types/struct_timespec.h
/usr/include/bits/types/struct_timeval.h
/usr/include/bits/types/time_t.h
/usr/include/bits/types/timer_t.h
/usr/include/bits/typesizes.h
/usr/include/bits/uintn-identity.h
/usr/include/bits/waitflags.h
/usr/include/bits/waitstatus.h
/usr/include/bits/wchar.h
/usr/include/bits/wordsize.h
/usr/include/endian.h
/usr/include/features-time64.h
/usr/include/features.h
/usr/include/getopt.h
/usr/include/gnu/stubs-64.h
/usr/include/gnu/stubs.h
/usr/include/inttypes.h
/usr/include/json-c/arraylist.h
/usr/include/json-c/debug.h
/usr/include/json-c/json.h
/usr/include/json-c/json_c_version.h
/usr/include/json-c/json_config.h
/usr/include/json-c/json_inttypes.h
/usr/include/json-c/json_object.h
/usr/include/json-c/json_object_iterator.h
/usr/include/json-c/json_patch.h
/usr/include/json-c/json_pointer.h
/usr/include/json-c/json_tokener.h
/usr/include/json-c/json_types.h
/usr/include/json-c/json_util.h
/usr/include/json-c/linkhash.h
/usr/include/json-c/printbuf.h
/usr/include/stdc-predef.h
/usr/include/stdint.h
/usr/include/stdio.h
/usr/include/stdlib.h
/usr/include/string.h
/usr/include/strings.h
/usr/include/sys/cdefs.h
/usr/include/sys/select.h
/usr/include/sys/types.h
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdarg.h
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdbool.h
/usr/lib/gcc/x86_64-redhat-linux/15/include/stddef.h
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdint.h
azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o
/mnt/alexander/Projects/azeron-linux/azeron-cli/utils.c
/usr/include/alloca.h
/usr/include/bits/atomic_wide_counter.h
/usr/include/bits/byteswap.h
/usr/include/bits/endian.h
/usr/include/bits/endianness.h
/usr/include/bits/floatn-common.h
/usr/include/bits/floatn.h
/usr/include/bits/libc-header-start.h
/usr/include/bits/long-double.h
/usr/include/bits/pthreadtypes-arch.h
/usr/include/bits/pthreadtypes.h
/usr/include/bits/select.h
/usr/include/bits/stdint-intn.h
/usr/include/bits/stdio.h
/usr/include/bits/stdio_lim.h
/usr/include/bits/stdlib-bsearch.h
/usr/include/bits/stdlib-float.h
/usr/include/bits/struct_mutex.h
/usr/include/bits/struct_rwlock.h
/usr/include/bits/thread-shared-types.h
/usr/include/bits/time64.h
/usr/include/bits/timesize.h
/usr/include/bits/types.h
/usr/include/bits/types/FILE.h
/usr/include/bits/types/__FILE.h
/usr/include/bits/types/__fpos64_t.h
/usr/include/bits/types/__fpos_t.h
/usr/include/bits/types/__locale_t.h
/usr/include/bits/types/__mbstate_t.h
/usr/include/bits/types/__sigset_t.h
/usr/include/bits/types/clock_t.h
/usr/include/bits/types/clockid_t.h
/usr/include/bits/types/cookie_io_functions_t.h
/usr/include/bits/types/locale_t.h
/usr/include/bits/types/sigset_t.h
/usr/include/bits/types/struct_FILE.h
/usr/include/bits/types/struct_timespec.h
/usr/include/bits/types/struct_timeval.h
/usr/include/bits/types/time_t.h
/usr/include/bits/types/timer_t.h
/usr/include/bits/typesizes.h
/usr/include/bits/uintn-identity.h
/usr/include/bits/waitflags.h
/usr/include/bits/waitstatus.h
/usr/include/bits/wordsize.h
/usr/include/endian.h
/usr/include/features-time64.h
/usr/include/features.h
/usr/include/gnu/stubs-64.h
/usr/include/gnu/stubs.h
/usr/include/stdc-predef.h
/usr/include/stdio.h
/usr/include/stdlib.h
/usr/include/string.h
/usr/include/strings.h
/usr/include/sys/cdefs.h
/usr/include/sys/select.h
/usr/include/sys/types.h
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdarg.h
/usr/lib/gcc/x86_64-redhat-linux/15/include/stddef.h
azeron-cli/azeron-cli
/mnt/alexander/Projects/azeron-linux/build/libazeron/libazeron.so.1.0.0
/lib64/ld-linux-x86-64.so.2
/lib64/libc.so.6
/lib64/libgcc_s.so.1
/usr/lib64/crt1.o
/usr/lib64/crti.o
/usr/lib64/crtn.o
/usr/lib64/libc.so
/usr/lib64/libjson-c.so
/usr/lib64/libusb-1.0.so
/usr/lib/gcc/x86_64-redhat-linux/15/crtbegin.o
/usr/lib/gcc/x86_64-redhat-linux/15/crtend.o
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc.a
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so
/usr/lib64/libc_nonshared.a
/usr/lib64/libcap.so.2
/usr/lib64/libudev.so.1
/mnt/alexander/Projects/azeron-linux/build/azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o
/mnt/alexander/Projects/azeron-linux/build/azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o
/mnt/alexander/Projects/azeron-linux/build/azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o

View File

@@ -0,0 +1,477 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o: /mnt/alexander/Projects/azeron-linux/azeron-cli/commands.c \
/mnt/alexander/Projects/azeron-linux/libazeron/azeron.h \
/usr/include/alloca.h \
/usr/include/bits/atomic_wide_counter.h \
/usr/include/bits/byteswap.h \
/usr/include/bits/endian.h \
/usr/include/bits/endianness.h \
/usr/include/bits/floatn-common.h \
/usr/include/bits/floatn.h \
/usr/include/bits/libc-header-start.h \
/usr/include/bits/long-double.h \
/usr/include/bits/pthreadtypes-arch.h \
/usr/include/bits/pthreadtypes.h \
/usr/include/bits/select.h \
/usr/include/bits/stdint-intn.h \
/usr/include/bits/stdint-least.h \
/usr/include/bits/stdint-uintn.h \
/usr/include/bits/stdio.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/stdlib-bsearch.h \
/usr/include/bits/stdlib-float.h \
/usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h \
/usr/include/bits/thread-shared-types.h \
/usr/include/bits/time64.h \
/usr/include/bits/timesize.h \
/usr/include/bits/types.h \
/usr/include/bits/types/FILE.h \
/usr/include/bits/types/__FILE.h \
/usr/include/bits/types/__fpos64_t.h \
/usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__locale_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__sigset_t.h \
/usr/include/bits/types/clock_t.h \
/usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/types/locale_t.h \
/usr/include/bits/types/sigset_t.h \
/usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/struct_timespec.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/time_t.h \
/usr/include/bits/types/timer_t.h \
/usr/include/bits/typesizes.h \
/usr/include/bits/uintn-identity.h \
/usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h \
/usr/include/bits/wchar.h \
/usr/include/bits/wordsize.h \
/usr/include/endian.h \
/usr/include/features-time64.h \
/usr/include/features.h \
/usr/include/gnu/stubs-64.h \
/usr/include/gnu/stubs.h \
/usr/include/inttypes.h \
/usr/include/json-c/arraylist.h \
/usr/include/json-c/debug.h \
/usr/include/json-c/json.h \
/usr/include/json-c/json_c_version.h \
/usr/include/json-c/json_config.h \
/usr/include/json-c/json_inttypes.h \
/usr/include/json-c/json_object.h \
/usr/include/json-c/json_object_iterator.h \
/usr/include/json-c/json_patch.h \
/usr/include/json-c/json_pointer.h \
/usr/include/json-c/json_tokener.h \
/usr/include/json-c/json_types.h \
/usr/include/json-c/json_util.h \
/usr/include/json-c/linkhash.h \
/usr/include/json-c/printbuf.h \
/usr/include/stdc-predef.h \
/usr/include/stdint.h \
/usr/include/stdio.h \
/usr/include/stdlib.h \
/usr/include/string.h \
/usr/include/strings.h \
/usr/include/sys/cdefs.h \
/usr/include/sys/select.h \
/usr/include/sys/types.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdarg.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdbool.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stddef.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdint.h
azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o: /mnt/alexander/Projects/azeron-linux/azeron-cli/main.c \
/mnt/alexander/Projects/azeron-linux/libazeron/azeron.h \
/usr/include/alloca.h \
/usr/include/bits/atomic_wide_counter.h \
/usr/include/bits/byteswap.h \
/usr/include/bits/endian.h \
/usr/include/bits/endianness.h \
/usr/include/bits/floatn-common.h \
/usr/include/bits/floatn.h \
/usr/include/bits/getopt_core.h \
/usr/include/bits/getopt_ext.h \
/usr/include/bits/libc-header-start.h \
/usr/include/bits/long-double.h \
/usr/include/bits/pthreadtypes-arch.h \
/usr/include/bits/pthreadtypes.h \
/usr/include/bits/select.h \
/usr/include/bits/stdint-intn.h \
/usr/include/bits/stdint-least.h \
/usr/include/bits/stdint-uintn.h \
/usr/include/bits/stdio.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/stdlib-bsearch.h \
/usr/include/bits/stdlib-float.h \
/usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h \
/usr/include/bits/thread-shared-types.h \
/usr/include/bits/time64.h \
/usr/include/bits/timesize.h \
/usr/include/bits/types.h \
/usr/include/bits/types/FILE.h \
/usr/include/bits/types/__FILE.h \
/usr/include/bits/types/__fpos64_t.h \
/usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__locale_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__sigset_t.h \
/usr/include/bits/types/clock_t.h \
/usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/types/locale_t.h \
/usr/include/bits/types/sigset_t.h \
/usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/struct_timespec.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/time_t.h \
/usr/include/bits/types/timer_t.h \
/usr/include/bits/typesizes.h \
/usr/include/bits/uintn-identity.h \
/usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h \
/usr/include/bits/wchar.h \
/usr/include/bits/wordsize.h \
/usr/include/endian.h \
/usr/include/features-time64.h \
/usr/include/features.h \
/usr/include/getopt.h \
/usr/include/gnu/stubs-64.h \
/usr/include/gnu/stubs.h \
/usr/include/inttypes.h \
/usr/include/json-c/arraylist.h \
/usr/include/json-c/debug.h \
/usr/include/json-c/json.h \
/usr/include/json-c/json_c_version.h \
/usr/include/json-c/json_config.h \
/usr/include/json-c/json_inttypes.h \
/usr/include/json-c/json_object.h \
/usr/include/json-c/json_object_iterator.h \
/usr/include/json-c/json_patch.h \
/usr/include/json-c/json_pointer.h \
/usr/include/json-c/json_tokener.h \
/usr/include/json-c/json_types.h \
/usr/include/json-c/json_util.h \
/usr/include/json-c/linkhash.h \
/usr/include/json-c/printbuf.h \
/usr/include/stdc-predef.h \
/usr/include/stdint.h \
/usr/include/stdio.h \
/usr/include/stdlib.h \
/usr/include/string.h \
/usr/include/strings.h \
/usr/include/sys/cdefs.h \
/usr/include/sys/select.h \
/usr/include/sys/types.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdarg.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdbool.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stddef.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdint.h
azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o: /mnt/alexander/Projects/azeron-linux/azeron-cli/utils.c \
/usr/include/alloca.h \
/usr/include/bits/atomic_wide_counter.h \
/usr/include/bits/byteswap.h \
/usr/include/bits/endian.h \
/usr/include/bits/endianness.h \
/usr/include/bits/floatn-common.h \
/usr/include/bits/floatn.h \
/usr/include/bits/libc-header-start.h \
/usr/include/bits/long-double.h \
/usr/include/bits/pthreadtypes-arch.h \
/usr/include/bits/pthreadtypes.h \
/usr/include/bits/select.h \
/usr/include/bits/stdint-intn.h \
/usr/include/bits/stdio.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/stdlib-bsearch.h \
/usr/include/bits/stdlib-float.h \
/usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h \
/usr/include/bits/thread-shared-types.h \
/usr/include/bits/time64.h \
/usr/include/bits/timesize.h \
/usr/include/bits/types.h \
/usr/include/bits/types/FILE.h \
/usr/include/bits/types/__FILE.h \
/usr/include/bits/types/__fpos64_t.h \
/usr/include/bits/types/__fpos_t.h \
/usr/include/bits/types/__locale_t.h \
/usr/include/bits/types/__mbstate_t.h \
/usr/include/bits/types/__sigset_t.h \
/usr/include/bits/types/clock_t.h \
/usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/cookie_io_functions_t.h \
/usr/include/bits/types/locale_t.h \
/usr/include/bits/types/sigset_t.h \
/usr/include/bits/types/struct_FILE.h \
/usr/include/bits/types/struct_timespec.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/time_t.h \
/usr/include/bits/types/timer_t.h \
/usr/include/bits/typesizes.h \
/usr/include/bits/uintn-identity.h \
/usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h \
/usr/include/bits/wordsize.h \
/usr/include/endian.h \
/usr/include/features-time64.h \
/usr/include/features.h \
/usr/include/gnu/stubs-64.h \
/usr/include/gnu/stubs.h \
/usr/include/stdc-predef.h \
/usr/include/stdio.h \
/usr/include/stdlib.h \
/usr/include/string.h \
/usr/include/strings.h \
/usr/include/sys/cdefs.h \
/usr/include/sys/select.h \
/usr/include/sys/types.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdarg.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stddef.h
azeron-cli/azeron-cli: libazeron/libazeron.so.1.0.0 \
/lib64/ld-linux-x86-64.so.2 \
/lib64/libc.so.6 \
/lib64/libgcc_s.so.1 \
/usr/lib64/crt1.o \
/usr/lib64/crti.o \
/usr/lib64/crtn.o \
/usr/lib64/libc.so \
/usr/lib64/libjson-c.so \
/usr/lib64/libusb-1.0.so \
/usr/lib/gcc/x86_64-redhat-linux/15/crtbegin.o \
/usr/lib/gcc/x86_64-redhat-linux/15/crtend.o \
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc.a \
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so \
/usr/lib64/libc_nonshared.a \
/usr/lib64/libcap.so.2 \
/usr/lib64/libudev.so.1 \
azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o \
azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o \
azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o
azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o:
azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o:
azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o:
/usr/lib64/libudev.so.1:
/usr/lib64/libc_nonshared.a:
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so:
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc.a:
/usr/lib64/libjson-c.so:
/usr/lib64/crti.o:
/usr/lib64/crt1.o:
/lib64/libgcc_s.so.1:
/lib64/ld-linux-x86-64.so.2:
/mnt/alexander/Projects/azeron-linux/azeron-cli/utils.c:
/usr/include/getopt.h:
/usr/lib/gcc/x86_64-redhat-linux/15/include/stddef.h:
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdbool.h:
/usr/include/sys/types.h:
/usr/include/sys/select.h:
/usr/include/sys/cdefs.h:
/usr/lib/gcc/x86_64-redhat-linux/15/crtend.o:
/usr/include/strings.h:
/usr/include/stdlib.h:
/usr/include/stdint.h:
/usr/include/json-c/printbuf.h:
/usr/include/json-c/json_util.h:
/usr/include/json-c/json_types.h:
/usr/include/json-c/json_tokener.h:
/usr/include/json-c/json_object.h:
/usr/include/json-c/json_inttypes.h:
/usr/include/json-c/json_config.h:
/usr/include/json-c/json_c_version.h:
/usr/lib64/libc.so:
/usr/include/string.h:
/usr/include/bits/time64.h:
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdint.h:
/usr/include/bits/byteswap.h:
/usr/include/bits/getopt_core.h:
/usr/include/json-c/json_pointer.h:
/usr/include/bits/types.h:
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdarg.h:
/usr/include/bits/stdlib-bsearch.h:
/usr/include/bits/types/sigset_t.h:
/usr/include/bits/thread-shared-types.h:
/usr/include/bits/wchar.h:
/usr/include/bits/stdio.h:
/usr/include/features.h:
/usr/include/bits/stdint-least.h:
/usr/include/alloca.h:
/usr/include/json-c/linkhash.h:
/usr/include/json-c/json.h:
/usr/include/json-c/json_object_iterator.h:
/usr/include/bits/struct_mutex.h:
/mnt/alexander/Projects/azeron-linux/azeron-cli/main.c:
/usr/include/gnu/stubs-64.h:
/usr/include/bits/types/__fpos64_t.h:
/usr/include/features-time64.h:
/usr/include/bits/types/FILE.h:
/usr/lib64/libcap.so.2:
/usr/lib/gcc/x86_64-redhat-linux/15/crtbegin.o:
/usr/include/bits/stdlib-float.h:
/usr/include/bits/types/__FILE.h:
/mnt/alexander/Projects/azeron-linux/azeron-cli/commands.c:
/usr/include/bits/stdio_lim.h:
/usr/include/bits/types/struct_timeval.h:
/usr/include/bits/stdint-intn.h:
/mnt/alexander/Projects/azeron-linux/libazeron/azeron.h:
/usr/lib64/libusb-1.0.so:
/usr/include/gnu/stubs.h:
/usr/include/bits/timesize.h:
/usr/include/bits/endian.h:
/usr/include/bits/types/__sigset_t.h:
/usr/include/bits/waitflags.h:
/usr/include/bits/libc-header-start.h:
/usr/include/bits/endianness.h:
/usr/include/bits/floatn-common.h:
/usr/include/bits/long-double.h:
/usr/include/json-c/arraylist.h:
/usr/include/json-c/json_patch.h:
/usr/include/bits/pthreadtypes.h:
/usr/include/bits/floatn.h:
/usr/include/stdc-predef.h:
/usr/include/bits/pthreadtypes-arch.h:
/usr/include/bits/types/__fpos_t.h:
/usr/include/bits/wordsize.h:
/usr/include/bits/getopt_ext.h:
/usr/include/bits/types/__locale_t.h:
/usr/include/bits/types/__mbstate_t.h:
/usr/include/bits/types/clock_t.h:
/usr/lib64/crtn.o:
/usr/include/bits/atomic_wide_counter.h:
/usr/include/bits/types/clockid_t.h:
/usr/include/bits/uintn-identity.h:
/usr/include/bits/typesizes.h:
/lib64/libc.so.6:
/usr/include/bits/types/locale_t.h:
/usr/include/bits/types/struct_FILE.h:
/usr/include/bits/types/struct_timespec.h:
libazeron/libazeron.so.1.0.0:
/usr/include/bits/struct_rwlock.h:
/usr/include/bits/types/time_t.h:
/usr/include/stdio.h:
/usr/include/bits/types/timer_t.h:
/usr/include/bits/stdint-uintn.h:
/usr/include/bits/types/cookie_io_functions_t.h:
/usr/include/endian.h:
/usr/include/bits/waitstatus.h:
/usr/include/inttypes.h:
/usr/include/bits/select.h:
/usr/include/json-c/debug.h:

View File

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

View File

@@ -0,0 +1,2 @@
# Empty dependencies file for azeron-cli.
# 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.31
# compile C with /usr/bin/cc
C_DEFINES = -DAZERON_DEBUG
C_INCLUDES = -I/usr/include/libusb-1.0 -I/usr/include/json-c -I/mnt/alexander/Projects/azeron-linux/libazeron
C_FLAGS = -O3 -DNDEBUG -std=gnu11

View File

@@ -0,0 +1,100 @@
azeron-cli: \
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crt1.o \
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crti.o \
/usr/lib/gcc/x86_64-redhat-linux/15/crtbegin.o \
CMakeFiles/azeron-cli.dir/main.c.o \
CMakeFiles/azeron-cli.dir/commands.c.o \
CMakeFiles/azeron-cli.dir/utils.c.o \
../libazeron/libazeron.so.1.0.0 \
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/libusb-1.0.so \
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/libjson-c.so \
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc.a \
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so \
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so \
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so \
/lib64/libgcc_s.so.1 \
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc.a \
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/libc.so \
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/libc.so \
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/libc.so \
/lib64/libc.so.6 \
/usr/lib64/libc_nonshared.a \
/lib64/ld-linux-x86-64.so.2 \
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc.a \
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so \
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so \
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so \
/lib64/libgcc_s.so.1 \
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc.a \
/usr/lib/gcc/x86_64-redhat-linux/15/crtend.o \
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crtn.o \
/usr/lib64/libudev.so.1 \
/lib64/ld-linux-x86-64.so.2 \
/usr/lib64/libcap.so.2 \
/lib64/libgcc_s.so.1
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crt1.o:
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crti.o:
/usr/lib/gcc/x86_64-redhat-linux/15/crtbegin.o:
CMakeFiles/azeron-cli.dir/main.c.o:
CMakeFiles/azeron-cli.dir/commands.c.o:
CMakeFiles/azeron-cli.dir/utils.c.o:
../libazeron/libazeron.so.1.0.0:
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/libusb-1.0.so:
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/libjson-c.so:
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc.a:
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so:
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so:
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so:
/lib64/libgcc_s.so.1:
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc.a:
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/libc.so:
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/libc.so:
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/libc.so:
/lib64/libc.so.6:
/usr/lib64/libc_nonshared.a:
/lib64/ld-linux-x86-64.so.2:
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc.a:
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so:
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so:
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc_s.so:
/lib64/libgcc_s.so.1:
/usr/lib/gcc/x86_64-redhat-linux/15/libgcc.a:
/usr/lib/gcc/x86_64-redhat-linux/15/crtend.o:
/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crtn.o:
/usr/lib64/libudev.so.1:
/lib64/ld-linux-x86-64.so.2:
/usr/lib64/libcap.so.2:
/lib64/libgcc_s.so.1:

View File

@@ -0,0 +1 @@
/usr/bin/cc -O3 -DNDEBUG -Wl,--dependency-file=CMakeFiles/azeron-cli.dir/link.d "CMakeFiles/azeron-cli.dir/main.c.o" "CMakeFiles/azeron-cli.dir/commands.c.o" "CMakeFiles/azeron-cli.dir/utils.c.o" -o azeron-cli -Wl,-rpath,/mnt/alexander/Projects/azeron-linux/build/libazeron: ../libazeron/libazeron.so.1.0.0 -lusb-1.0 -ljson-c

Binary file not shown.

View File

@@ -0,0 +1,68 @@
azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o: \
/mnt/alexander/Projects/azeron-linux/azeron-cli/main.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-redhat-linux/15/include/stddef.h \
/usr/lib/gcc/x86_64-redhat-linux/15/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 /usr/include/bits/stdio.h \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
/usr/include/sys/select.h /usr/include/bits/select.h \
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/struct_timespec.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h \
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \
/usr/include/string.h /usr/include/bits/types/locale_t.h \
/usr/include/bits/types/__locale_t.h /usr/include/strings.h \
/usr/include/getopt.h /usr/include/bits/getopt_core.h \
/usr/include/bits/getopt_ext.h \
/mnt/alexander/Projects/azeron-linux/libazeron/azeron.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdint.h \
/usr/include/stdint.h /usr/include/bits/wchar.h \
/usr/include/bits/stdint-uintn.h /usr/include/bits/stdint-least.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/stdbool.h \
/usr/include/json-c/json.h /usr/include/json-c/arraylist.h \
/usr/include/json-c/debug.h /usr/include/json-c/json_c_version.h \
/usr/include/json-c/json_object.h /usr/include/json-c/json_inttypes.h \
/usr/include/json-c/json_config.h /usr/include/inttypes.h \
/usr/include/json-c/json_types.h /usr/include/json-c/printbuf.h \
/usr/include/json-c/json_object_iterator.h \
/usr/include/json-c/json_patch.h /usr/include/json-c/json_pointer.h \
/usr/include/json-c/json_tokener.h /usr/include/json-c/json_util.h \
/usr/include/json-c/linkhash.h \
/mnt/alexander/Projects/azeron-linux/azeron-cli/../libazeron/internal.h \
/mnt/alexander/Projects/azeron-linux/azeron-cli/../libazeron/azeron.h \
/usr/include/libusb-1.0/libusb.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/limits.h \
/usr/lib/gcc/x86_64-redhat-linux/15/include/syslimits.h \
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
/usr/include/bits/pthread_stack_min-dynamic.h \
/usr/include/bits/pthread_stack_min.h /usr/include/bits/posix2_lim.h \
/usr/include/sys/time.h /usr/include/time.h /usr/include/bits/time.h \
/usr/include/bits/types/struct_tm.h \
/usr/include/bits/types/struct_itimerspec.h /usr/include/pthread.h \
/usr/include/sched.h /usr/include/bits/sched.h \
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
/usr/include/bits/setjmp.h \
/usr/include/bits/types/struct___jmp_buf_tag.h

View File

@@ -0,0 +1,5 @@
CMAKE_PROGRESS_1 = 6
CMAKE_PROGRESS_2 = 7
CMAKE_PROGRESS_3 = 8
CMAKE_PROGRESS_4 = 9

Binary file not shown.

View File

@@ -0,0 +1,36 @@
azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o: \
/mnt/alexander/Projects/azeron-linux/azeron-cli/utils.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-redhat-linux/15/include/stddef.h \
/usr/lib/gcc/x86_64-redhat-linux/15/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 /usr/include/bits/stdio.h \
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
/usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \
/usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
/usr/include/sys/select.h /usr/include/bits/select.h \
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
/usr/include/bits/types/struct_timeval.h \
/usr/include/bits/types/struct_timespec.h \
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
/usr/include/bits/pthreadtypes-arch.h \
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
/usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \
/usr/include/string.h /usr/include/bits/types/locale_t.h \
/usr/include/bits/types/__locale_t.h /usr/include/strings.h

View File

@@ -0,0 +1 @@
9

285
build/azeron-cli/Makefile Normal file
View File

@@ -0,0 +1,285 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
# 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 = /mnt/alexander/Projects/azeron-linux
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /mnt/alexander/Projects/azeron-linux/build
#=============================================================================
# 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\" \"doc\" \"udev\""
.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 /mnt/alexander/Projects/azeron-linux/build && $(CMAKE_COMMAND) -E cmake_progress_start /mnt/alexander/Projects/azeron-linux/build/CMakeFiles /mnt/alexander/Projects/azeron-linux/build/azeron-cli//CMakeFiles/progress.marks
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 azeron-cli/all
$(CMAKE_COMMAND) -E cmake_progress_start /mnt/alexander/Projects/azeron-linux/build/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 azeron-cli/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 azeron-cli/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 azeron-cli/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /mnt/alexander/Projects/azeron-linux/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
azeron-cli/CMakeFiles/azeron-cli.dir/rule:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 azeron-cli/CMakeFiles/azeron-cli.dir/rule
.PHONY : azeron-cli/CMakeFiles/azeron-cli.dir/rule
# Convenience name for target.
azeron-cli: azeron-cli/CMakeFiles/azeron-cli.dir/rule
.PHONY : azeron-cli
# fast build rule for target.
azeron-cli/fast:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f azeron-cli/CMakeFiles/azeron-cli.dir/build.make azeron-cli/CMakeFiles/azeron-cli.dir/build
.PHONY : azeron-cli/fast
commands.o: commands.c.o
.PHONY : commands.o
# target to build an object file
commands.c.o:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f azeron-cli/CMakeFiles/azeron-cli.dir/build.make azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.o
.PHONY : commands.c.o
commands.i: commands.c.i
.PHONY : commands.i
# target to preprocess a source file
commands.c.i:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f azeron-cli/CMakeFiles/azeron-cli.dir/build.make azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.i
.PHONY : commands.c.i
commands.s: commands.c.s
.PHONY : commands.s
# target to generate assembly for a file
commands.c.s:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f azeron-cli/CMakeFiles/azeron-cli.dir/build.make azeron-cli/CMakeFiles/azeron-cli.dir/commands.c.s
.PHONY : commands.c.s
main.o: main.c.o
.PHONY : main.o
# target to build an object file
main.c.o:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f azeron-cli/CMakeFiles/azeron-cli.dir/build.make azeron-cli/CMakeFiles/azeron-cli.dir/main.c.o
.PHONY : main.c.o
main.i: main.c.i
.PHONY : main.i
# target to preprocess a source file
main.c.i:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f azeron-cli/CMakeFiles/azeron-cli.dir/build.make azeron-cli/CMakeFiles/azeron-cli.dir/main.c.i
.PHONY : main.c.i
main.s: main.c.s
.PHONY : main.s
# target to generate assembly for a file
main.c.s:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f azeron-cli/CMakeFiles/azeron-cli.dir/build.make azeron-cli/CMakeFiles/azeron-cli.dir/main.c.s
.PHONY : main.c.s
utils.o: utils.c.o
.PHONY : utils.o
# target to build an object file
utils.c.o:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f azeron-cli/CMakeFiles/azeron-cli.dir/build.make azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.o
.PHONY : utils.c.o
utils.i: utils.c.i
.PHONY : utils.i
# target to preprocess a source file
utils.c.i:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f azeron-cli/CMakeFiles/azeron-cli.dir/build.make azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.i
.PHONY : utils.c.i
utils.s: utils.c.s
.PHONY : utils.s
# target to generate assembly for a file
utils.c.s:
cd /mnt/alexander/Projects/azeron-linux/build && $(MAKE) $(MAKESILENT) -f azeron-cli/CMakeFiles/azeron-cli.dir/build.make azeron-cli/CMakeFiles/azeron-cli.dir/utils.c.s
.PHONY : 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 "... edit_cache"
@echo "... install"
@echo "... install/local"
@echo "... install/strip"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... azeron-cli"
@echo "... commands.o"
@echo "... commands.i"
@echo "... commands.s"
@echo "... main.o"
@echo "... main.i"
@echo "... main.s"
@echo "... utils.o"
@echo "... utils.i"
@echo "... 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 /mnt/alexander/Projects/azeron-linux/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

BIN
build/azeron-cli/azeron-cli Normal file

Binary file not shown.

View File

@@ -0,0 +1,70 @@
# Install script for directory: /mnt/alexander/Projects/azeron-linux/azeron-cli
# 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 "Release")
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()
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/azeron-cli" AND
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/azeron-cli")
file(RPATH_CHECK
FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/azeron-cli"
RPATH "")
endif()
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "/mnt/alexander/Projects/azeron-linux/build/azeron-cli/azeron-cli")
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/azeron-cli" AND
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/azeron-cli")
file(RPATH_CHANGE
FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/azeron-cli"
OLD_RPATH "/mnt/alexander/Projects/azeron-linux/build/libazeron:"
NEW_RPATH "")
if(CMAKE_INSTALL_DO_STRIP)
execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/azeron-cli")
endif()
endif()
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
if(CMAKE_INSTALL_LOCAL_ONLY)
file(WRITE "/mnt/alexander/Projects/azeron-linux/build/azeron-cli/install_local_manifest.txt"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
endif()