finished hw7

This commit is contained in:
2019-11-18 16:34:57 -07:00
parent f47f079bdc
commit 336746c138
514 changed files with 38393 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"/Users/bradybodily/Repositories/CS3460/untitled3/main.c" "/Users/bradybodily/Repositories/CS3460/untitled3/cmake-build-debug/CMakeFiles/untitled3.dir/main.c.o"
)
set(CMAKE_C_COMPILER_ID "AppleClang")
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,98 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.14
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake
# The command to remove a file.
RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS3460/untitled3
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS3460/untitled3/cmake-build-debug
# Include any dependencies generated for this target.
include CMakeFiles/untitled3.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/untitled3.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/untitled3.dir/flags.make
CMakeFiles/untitled3.dir/main.c.o: CMakeFiles/untitled3.dir/flags.make
CMakeFiles/untitled3.dir/main.c.o: ../main.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/bradybodily/Repositories/CS3460/untitled3/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/untitled3.dir/main.c.o"
/Library/Developer/CommandLineTools/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled3.dir/main.c.o -c /Users/bradybodily/Repositories/CS3460/untitled3/main.c
CMakeFiles/untitled3.dir/main.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled3.dir/main.c.i"
/Library/Developer/CommandLineTools/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/bradybodily/Repositories/CS3460/untitled3/main.c > CMakeFiles/untitled3.dir/main.c.i
CMakeFiles/untitled3.dir/main.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled3.dir/main.c.s"
/Library/Developer/CommandLineTools/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/bradybodily/Repositories/CS3460/untitled3/main.c -o CMakeFiles/untitled3.dir/main.c.s
# Object files for target untitled3
untitled3_OBJECTS = \
"CMakeFiles/untitled3.dir/main.c.o"
# External object files for target untitled3
untitled3_EXTERNAL_OBJECTS =
untitled3: CMakeFiles/untitled3.dir/main.c.o
untitled3: CMakeFiles/untitled3.dir/build.make
untitled3: CMakeFiles/untitled3.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/bradybodily/Repositories/CS3460/untitled3/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable untitled3"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/untitled3.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/untitled3.dir/build: untitled3
.PHONY : CMakeFiles/untitled3.dir/build
CMakeFiles/untitled3.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/untitled3.dir/cmake_clean.cmake
.PHONY : CMakeFiles/untitled3.dir/clean
CMakeFiles/untitled3.dir/depend:
cd /Users/bradybodily/Repositories/CS3460/untitled3/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/bradybodily/Repositories/CS3460/untitled3 /Users/bradybodily/Repositories/CS3460/untitled3 /Users/bradybodily/Repositories/CS3460/untitled3/cmake-build-debug /Users/bradybodily/Repositories/CS3460/untitled3/cmake-build-debug /Users/bradybodily/Repositories/CS3460/untitled3/cmake-build-debug/CMakeFiles/untitled3.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/untitled3.dir/depend

View File

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

View File

@@ -0,0 +1,2 @@
# Empty dependencies file for untitled3.
# 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.14
# compile C with /Library/Developer/CommandLineTools/usr/bin/cc
C_FLAGS = -g -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -std=gnu99
C_DEFINES =
C_INCLUDES =

View File

@@ -0,0 +1 @@
/Library/Developer/CommandLineTools/usr/bin/cc -g -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/untitled3.dir/main.c.o -o untitled3

View File

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