decision-tree-classifier

Decision tree classifier implementation in C++
git clone git://git.laack.co/decision-tree-classifier.git
Log | Files | Refs | README | LICENSE

Makefile (8899B)


      1 # CMAKE generated file: DO NOT EDIT!
      2 # Generated by "Unix Makefiles" Generator, CMake Version 3.31
      3 
      4 # Default target executed when no arguments are given to make.
      5 default_target: all
      6 .PHONY : default_target
      7 
      8 # Allow only one "make -f Makefile2" at a time, but pass parallelism.
      9 .NOTPARALLEL:
     10 
     11 #=============================================================================
     12 # Special targets provided by cmake.
     13 
     14 # Disable implicit rules so canonical targets will work.
     15 .SUFFIXES:
     16 
     17 # Disable VCS-based implicit rules.
     18 % : %,v
     19 
     20 # Disable VCS-based implicit rules.
     21 % : RCS/%
     22 
     23 # Disable VCS-based implicit rules.
     24 % : RCS/%,v
     25 
     26 # Disable VCS-based implicit rules.
     27 % : SCCS/s.%
     28 
     29 # Disable VCS-based implicit rules.
     30 % : s.%
     31 
     32 .SUFFIXES: .hpux_make_needs_suffix_list
     33 
     34 # Command-line flag to silence nested $(MAKE).
     35 $(VERBOSE)MAKESILENT = -s
     36 
     37 #Suppress display of executed commands.
     38 $(VERBOSE).SILENT:
     39 
     40 # A target that is always out of date.
     41 cmake_force:
     42 .PHONY : cmake_force
     43 
     44 #=============================================================================
     45 # Set environment variables for the build.
     46 
     47 # The shell in which to execute make rules.
     48 SHELL = /bin/sh
     49 
     50 # The CMake executable.
     51 CMAKE_COMMAND = /usr/bin/cmake
     52 
     53 # The command to remove a file.
     54 RM = /usr/bin/cmake -E rm -f
     55 
     56 # Escaping for special characters.
     57 EQUALS = =
     58 
     59 # The top-level source directory on which CMake was run.
     60 CMAKE_SOURCE_DIR = /home/andrew/gitRepos/pseudo-optimal-decision-tree/rewrite
     61 
     62 # The top-level build directory on which CMake was run.
     63 CMAKE_BINARY_DIR = /home/andrew/gitRepos/pseudo-optimal-decision-tree/rewrite
     64 
     65 #=============================================================================
     66 # Targets provided globally by CMake.
     67 
     68 # Special rule for the target edit_cache
     69 edit_cache:
     70 	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..."
     71 	/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
     72 .PHONY : edit_cache
     73 
     74 # Special rule for the target edit_cache
     75 edit_cache/fast: edit_cache
     76 .PHONY : edit_cache/fast
     77 
     78 # Special rule for the target rebuild_cache
     79 rebuild_cache:
     80 	@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
     81 	/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
     82 .PHONY : rebuild_cache
     83 
     84 # Special rule for the target rebuild_cache
     85 rebuild_cache/fast: rebuild_cache
     86 .PHONY : rebuild_cache/fast
     87 
     88 # The main all target
     89 all: cmake_check_build_system
     90 	$(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/gitRepos/pseudo-optimal-decision-tree/rewrite/CMakeFiles /home/andrew/gitRepos/pseudo-optimal-decision-tree/rewrite//CMakeFiles/progress.marks
     91 	$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
     92 	$(CMAKE_COMMAND) -E cmake_progress_start /home/andrew/gitRepos/pseudo-optimal-decision-tree/rewrite/CMakeFiles 0
     93 .PHONY : all
     94 
     95 # The main clean target
     96 clean:
     97 	$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
     98 .PHONY : clean
     99 
    100 # The main clean target
    101 clean/fast: clean
    102 .PHONY : clean/fast
    103 
    104 # Prepare targets for installation.
    105 preinstall: all
    106 	$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
    107 .PHONY : preinstall
    108 
    109 # Prepare targets for installation.
    110 preinstall/fast:
    111 	$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
    112 .PHONY : preinstall/fast
    113 
    114 # clear depends
    115 depend:
    116 	$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
    117 .PHONY : depend
    118 
    119 #=============================================================================
    120 # Target rules for targets named decision_tree
    121 
    122 # Build rule for target.
    123 decision_tree: cmake_check_build_system
    124 	$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 decision_tree
    125 .PHONY : decision_tree
    126 
    127 # fast build rule for target.
    128 decision_tree/fast:
    129 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/build
    130 .PHONY : decision_tree/fast
    131 
    132 #=============================================================================
    133 # Target rules for targets named clean_build
    134 
    135 # Build rule for target.
    136 clean_build: cmake_check_build_system
    137 	$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean_build
    138 .PHONY : clean_build
    139 
    140 # fast build rule for target.
    141 clean_build/fast:
    142 	$(MAKE) $(MAKESILENT) -f CMakeFiles/clean_build.dir/build.make CMakeFiles/clean_build.dir/build
    143 .PHONY : clean_build/fast
    144 
    145 cpp/Criterion.o: cpp/Criterion.cpp.o
    146 .PHONY : cpp/Criterion.o
    147 
    148 # target to build an object file
    149 cpp/Criterion.cpp.o:
    150 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/cpp/Criterion.cpp.o
    151 .PHONY : cpp/Criterion.cpp.o
    152 
    153 cpp/Criterion.i: cpp/Criterion.cpp.i
    154 .PHONY : cpp/Criterion.i
    155 
    156 # target to preprocess a source file
    157 cpp/Criterion.cpp.i:
    158 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/cpp/Criterion.cpp.i
    159 .PHONY : cpp/Criterion.cpp.i
    160 
    161 cpp/Criterion.s: cpp/Criterion.cpp.s
    162 .PHONY : cpp/Criterion.s
    163 
    164 # target to generate assembly for a file
    165 cpp/Criterion.cpp.s:
    166 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/cpp/Criterion.cpp.s
    167 .PHONY : cpp/Criterion.cpp.s
    168 
    169 cpp/DecisionTreeClassifier.o: cpp/DecisionTreeClassifier.cpp.o
    170 .PHONY : cpp/DecisionTreeClassifier.o
    171 
    172 # target to build an object file
    173 cpp/DecisionTreeClassifier.cpp.o:
    174 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/cpp/DecisionTreeClassifier.cpp.o
    175 .PHONY : cpp/DecisionTreeClassifier.cpp.o
    176 
    177 cpp/DecisionTreeClassifier.i: cpp/DecisionTreeClassifier.cpp.i
    178 .PHONY : cpp/DecisionTreeClassifier.i
    179 
    180 # target to preprocess a source file
    181 cpp/DecisionTreeClassifier.cpp.i:
    182 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/cpp/DecisionTreeClassifier.cpp.i
    183 .PHONY : cpp/DecisionTreeClassifier.cpp.i
    184 
    185 cpp/DecisionTreeClassifier.s: cpp/DecisionTreeClassifier.cpp.s
    186 .PHONY : cpp/DecisionTreeClassifier.s
    187 
    188 # target to generate assembly for a file
    189 cpp/DecisionTreeClassifier.cpp.s:
    190 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/cpp/DecisionTreeClassifier.cpp.s
    191 .PHONY : cpp/DecisionTreeClassifier.cpp.s
    192 
    193 cpp/TreeNode.o: cpp/TreeNode.cpp.o
    194 .PHONY : cpp/TreeNode.o
    195 
    196 # target to build an object file
    197 cpp/TreeNode.cpp.o:
    198 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/cpp/TreeNode.cpp.o
    199 .PHONY : cpp/TreeNode.cpp.o
    200 
    201 cpp/TreeNode.i: cpp/TreeNode.cpp.i
    202 .PHONY : cpp/TreeNode.i
    203 
    204 # target to preprocess a source file
    205 cpp/TreeNode.cpp.i:
    206 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/cpp/TreeNode.cpp.i
    207 .PHONY : cpp/TreeNode.cpp.i
    208 
    209 cpp/TreeNode.s: cpp/TreeNode.cpp.s
    210 .PHONY : cpp/TreeNode.s
    211 
    212 # target to generate assembly for a file
    213 cpp/TreeNode.cpp.s:
    214 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/cpp/TreeNode.cpp.s
    215 .PHONY : cpp/TreeNode.cpp.s
    216 
    217 cpp/bindings.o: cpp/bindings.cpp.o
    218 .PHONY : cpp/bindings.o
    219 
    220 # target to build an object file
    221 cpp/bindings.cpp.o:
    222 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/cpp/bindings.cpp.o
    223 .PHONY : cpp/bindings.cpp.o
    224 
    225 cpp/bindings.i: cpp/bindings.cpp.i
    226 .PHONY : cpp/bindings.i
    227 
    228 # target to preprocess a source file
    229 cpp/bindings.cpp.i:
    230 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/cpp/bindings.cpp.i
    231 .PHONY : cpp/bindings.cpp.i
    232 
    233 cpp/bindings.s: cpp/bindings.cpp.s
    234 .PHONY : cpp/bindings.s
    235 
    236 # target to generate assembly for a file
    237 cpp/bindings.cpp.s:
    238 	$(MAKE) $(MAKESILENT) -f CMakeFiles/decision_tree.dir/build.make CMakeFiles/decision_tree.dir/cpp/bindings.cpp.s
    239 .PHONY : cpp/bindings.cpp.s
    240 
    241 # Help Target
    242 help:
    243 	@echo "The following are some of the valid targets for this Makefile:"
    244 	@echo "... all (the default if no target is provided)"
    245 	@echo "... clean"
    246 	@echo "... depend"
    247 	@echo "... edit_cache"
    248 	@echo "... rebuild_cache"
    249 	@echo "... clean_build"
    250 	@echo "... decision_tree"
    251 	@echo "... cpp/Criterion.o"
    252 	@echo "... cpp/Criterion.i"
    253 	@echo "... cpp/Criterion.s"
    254 	@echo "... cpp/DecisionTreeClassifier.o"
    255 	@echo "... cpp/DecisionTreeClassifier.i"
    256 	@echo "... cpp/DecisionTreeClassifier.s"
    257 	@echo "... cpp/TreeNode.o"
    258 	@echo "... cpp/TreeNode.i"
    259 	@echo "... cpp/TreeNode.s"
    260 	@echo "... cpp/bindings.o"
    261 	@echo "... cpp/bindings.i"
    262 	@echo "... cpp/bindings.s"
    263 .PHONY : help
    264 
    265 
    266 
    267 #=============================================================================
    268 # Special targets to cleanup operation of make.
    269 
    270 # Special rule to run CMake to check the build system integrity.
    271 # No rule that depends on this can have commands that come from listfiles
    272 # because they might be regenerated.
    273 cmake_check_build_system:
    274 	$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
    275 .PHONY : cmake_check_build_system
    276