Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # 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 = /Applications/CMake.app/Contents/bin/cmake
- # The command to remove a file.
- RM = /Applications/CMake.app/Contents/bin/cmake -E rm -f
- # Escaping for special characters.
- EQUALS = =
- # The top-level source directory on which CMake was run.
- CMAKE_SOURCE_DIR = /Users/jadijosh/workspace/internships/reu_gmu/openpose
- # The top-level build directory on which CMake was run.
- CMAKE_BINARY_DIR = /Users/jadijosh/workspace/internships/reu_gmu/openpose/build
- # Targets provided globally by CMake.
- # Special rule for the target install/local
- install/local: preinstall
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
- /Applications/CMake.app/Contents/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..."
- /Applications/CMake.app/Contents/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
- .PHONY : install/local/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..."
- /Applications/CMake.app/Contents/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 edit_cache
- edit_cache:
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
- /Applications/CMake.app/Contents/bin/cmake-gui -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 install/strip
- install/strip: preinstall
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
- /Applications/CMake.app/Contents/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..."
- /Applications/CMake.app/Contents/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
- .PHONY : install/strip/fast
- # Special rule for the target install
- install: preinstall
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
- /Applications/CMake.app/Contents/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..."
- /Applications/CMake.app/Contents/bin/cmake -P cmake_install.cmake
- .PHONY : install/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\""
- .PHONY : list_install_components
- # Special rule for the target list_install_components
- list_install_components/fast: list_install_components
- .PHONY : list_install_components/fast
- # The main all target
- all: cmake_check_build_system
- $(CMAKE_COMMAND) -E cmake_progress_start /Users/jadijosh/workspace/internships/reu_gmu/openpose/build/CMakeFiles /Users/jadijosh/workspace/internships/reu_gmu/openpose/build//CMakeFiles/progress.marks
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
- $(CMAKE_COMMAND) -E cmake_progress_start /Users/jadijosh/workspace/internships/reu_gmu/openpose/build/CMakeFiles 0
- .PHONY : all
- # The main clean target
- clean:
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
- .PHONY : clean
- # The main clean target
- clean/fast: clean
- .PHONY : clean/fast
- # Prepare targets for installation.
- preinstall: all
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
- .PHONY : preinstall
- # Prepare targets for installation.
- preinstall/fast:
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
- .PHONY : preinstall/fast
- # clear depends
- depend:
- $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
- .PHONY : depend
- # Target rules for targets named uninstall
- # Build rule for target.
- uninstall: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 uninstall
- .PHONY : uninstall
- # fast build rule for target.
- uninstall/fast:
- $(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build
- .PHONY : uninstall/fast
- # Target rules for targets named openpose
- # Build rule for target.
- openpose: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose
- .PHONY : openpose
- # fast build rule for target.
- openpose/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/CMakeFiles/openpose.dir/build.make src/openpose/CMakeFiles/openpose.dir/build
- .PHONY : openpose/fast
- # Target rules for targets named openpose_3d
- # Build rule for target.
- openpose_3d: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_3d
- .PHONY : openpose_3d
- # fast build rule for target.
- openpose_3d/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/3d/CMakeFiles/openpose_3d.dir/build.make src/openpose/3d/CMakeFiles/openpose_3d.dir/build
- .PHONY : openpose_3d/fast
- # Target rules for targets named openpose_calibration
- # Build rule for target.
- openpose_calibration: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_calibration
- .PHONY : openpose_calibration
- # fast build rule for target.
- openpose_calibration/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/calibration/CMakeFiles/openpose_calibration.dir/build.make src/openpose/calibration/CMakeFiles/openpose_calibration.dir/build
- .PHONY : openpose_calibration/fast
- # Target rules for targets named openpose_core
- # Build rule for target.
- openpose_core: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_core
- .PHONY : openpose_core
- # fast build rule for target.
- openpose_core/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/core/CMakeFiles/openpose_core.dir/build.make src/openpose/core/CMakeFiles/openpose_core.dir/build
- .PHONY : openpose_core/fast
- # Target rules for targets named openpose_face
- # Build rule for target.
- openpose_face: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_face
- .PHONY : openpose_face
- # fast build rule for target.
- openpose_face/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/face/CMakeFiles/openpose_face.dir/build.make src/openpose/face/CMakeFiles/openpose_face.dir/build
- .PHONY : openpose_face/fast
- # Target rules for targets named openpose_filestream
- # Build rule for target.
- openpose_filestream: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_filestream
- .PHONY : openpose_filestream
- # fast build rule for target.
- openpose_filestream/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/filestream/CMakeFiles/openpose_filestream.dir/build.make src/openpose/filestream/CMakeFiles/openpose_filestream.dir/build
- .PHONY : openpose_filestream/fast
- # Target rules for targets named openpose_gpu
- # Build rule for target.
- openpose_gpu: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_gpu
- .PHONY : openpose_gpu
- # fast build rule for target.
- openpose_gpu/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/gpu/CMakeFiles/openpose_gpu.dir/build.make src/openpose/gpu/CMakeFiles/openpose_gpu.dir/build
- .PHONY : openpose_gpu/fast
- # Target rules for targets named openpose_gui
- # Build rule for target.
- openpose_gui: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_gui
- .PHONY : openpose_gui
- # fast build rule for target.
- openpose_gui/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/gui/CMakeFiles/openpose_gui.dir/build.make src/openpose/gui/CMakeFiles/openpose_gui.dir/build
- .PHONY : openpose_gui/fast
- # Target rules for targets named openpose_hand
- # Build rule for target.
- openpose_hand: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_hand
- .PHONY : openpose_hand
- # fast build rule for target.
- openpose_hand/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/hand/CMakeFiles/openpose_hand.dir/build.make src/openpose/hand/CMakeFiles/openpose_hand.dir/build
- .PHONY : openpose_hand/fast
- # Target rules for targets named openpose_net
- # Build rule for target.
- openpose_net: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_net
- .PHONY : openpose_net
- # fast build rule for target.
- openpose_net/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/net/CMakeFiles/openpose_net.dir/build.make src/openpose/net/CMakeFiles/openpose_net.dir/build
- .PHONY : openpose_net/fast
- # Target rules for targets named openpose_pose
- # Build rule for target.
- openpose_pose: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_pose
- .PHONY : openpose_pose
- # fast build rule for target.
- openpose_pose/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/pose/CMakeFiles/openpose_pose.dir/build.make src/openpose/pose/CMakeFiles/openpose_pose.dir/build
- .PHONY : openpose_pose/fast
- #=============================================================================
- # Target rules for targets named openpose_producer
- # Build rule for target.
- openpose_producer: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_producer
- .PHONY : openpose_producer
- # fast build rule for target.
- openpose_producer/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/producer/CMakeFiles/openpose_producer.dir/build.make src/openpose/producer/CMakeFiles/openpose_producer.dir/build
- .PHONY : openpose_producer/fast
- # Target rules for targets named openpose_thread
- # Build rule for target.
- openpose_thread: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_thread
- .PHONY : openpose_thread
- # fast build rule for target.
- openpose_thread/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/thread/CMakeFiles/openpose_thread.dir/build.make src/openpose/thread/CMakeFiles/openpose_thread.dir/build
- .PHONY : openpose_thread/fast
- # Target rules for targets named openpose_tracking
- # Build rule for target.
- openpose_tracking: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_tracking
- .PHONY : openpose_tracking
- # fast build rule for target.
- openpose_tracking/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/tracking/CMakeFiles/openpose_tracking.dir/build.make src/openpose/tracking/CMakeFiles/openpose_tracking.dir/build
- .PHONY : openpose_tracking/fast
- # Target rules for targets named openpose_unity
- # Build rule for target.
- openpose_unity: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_unity
- .PHONY : openpose_unity
- # fast build rule for target.
- openpose_unity/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/unity/CMakeFiles/openpose_unity.dir/build.make src/openpose/unity/CMakeFiles/openpose_unity.dir/build
- .PHONY : openpose_unity/fast
- # Target rules for targets named openpose_utilities
- # Build rule for target.
- openpose_utilities: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_utilities
- .PHONY : openpose_utilities
- # fast build rule for target.
- openpose_utilities/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/utilities/CMakeFiles/openpose_utilities.dir/build.make src/openpose/utilities/CMakeFiles/openpose_utilities.dir/build
- .PHONY : openpose_utilities/fast
- # Target rules for targets named openpose_wrapper
- # Build rule for target.
- openpose_wrapper: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_wrapper
- .PHONY : openpose_wrapper
- # fast build rule for target.
- openpose_wrapper/fast:
- $(MAKE) $(MAKESILENT) -f src/openpose/wrapper/CMakeFiles/openpose_wrapper.dir/build.make src/openpose/wrapper/CMakeFiles/openpose_wrapper.dir/build
- .PHONY : openpose_wrapper/fast
- # Target rules for targets named calibration.bin
- # Build rule for target.
- calibration.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 calibration.bin
- .PHONY : calibration.bin
- # fast build rule for target.
- calibration.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/calibration/CMakeFiles/calibration.bin.dir/build.make examples/calibration/CMakeFiles/calibration.bin.dir/build
- .PHONY : calibration.bin/fast
- # Target rules for targets named tutorial_add_module_custom_post_processing.bin
- # Build rule for target.
- tutorial_add_module_custom_post_processing.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tutorial_add_module_custom_post_processing.bin
- .PHONY : tutorial_add_module_custom_post_processing.bin
- # fast build rule for target.
- tutorial_add_module_custom_post_processing.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/deprecated/CMakeFiles/tutorial_add_module_custom_post_processing.bin.dir/build.make examples/deprecated/CMakeFiles/tutorial_add_module_custom_post_processing.bin.dir/build
- .PHONY : tutorial_add_module_custom_post_processing.bin/fast
- # Target rules for targets named tutorial_api_thread_1_user_processing_function.bin
- # Build rule for target.
- tutorial_api_thread_1_user_processing_function.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tutorial_api_thread_1_user_processing_function.bin
- .PHONY : tutorial_api_thread_1_user_processing_function.bin
- # fast build rule for target.
- tutorial_api_thread_1_user_processing_function.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/deprecated/CMakeFiles/tutorial_api_thread_1_user_processing_function.bin.dir/build.make examples/deprecated/CMakeFiles/tutorial_api_thread_1_user_processing_function.bin.dir/build
- .PHONY : tutorial_api_thread_1_user_processing_function.bin/fast
- # Target rules for targets named tutorial_api_thread_2_user_input_processing_output_and_datum.bin
- # Build rule for target.
- tutorial_api_thread_2_user_input_processing_output_and_datum.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tutorial_api_thread_2_user_input_processing_output_and_datum.bin
- .PHONY : tutorial_api_thread_2_user_input_processing_output_and_datum.bin
- # fast build rule for target.
- tutorial_api_thread_2_user_input_processing_output_and_datum.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/deprecated/CMakeFiles/tutorial_api_thread_2_user_input_processing_output_and_datum.bin.dir/build.make examples/deprecated/CMakeFiles/tutorial_api_thread_2_user_input_processing_output_and_datum.bin.dir/build
- .PHONY : tutorial_api_thread_2_user_input_processing_output_and_datum.bin/fast
- # Target rules for targets named openpose.bin
- # Build rule for target.
- openpose.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose.bin
- .PHONY : openpose.bin
- # fast build rule for target.
- openpose.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/openpose/CMakeFiles/openpose.bin.dir/build.make examples/openpose/CMakeFiles/openpose.bin.dir/build
- .PHONY : openpose.bin/fast
- # Target rules for targets named 03_keypoints_from_image.bin
- # Build rule for target.
- 03_keypoints_from_image.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 03_keypoints_from_image.bin
- .PHONY : 03_keypoints_from_image.bin
- # fast build rule for target.
- 03_keypoints_from_image.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/03_keypoints_from_image.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/03_keypoints_from_image.bin.dir/build
- .PHONY : 03_keypoints_from_image.bin/fast
- # Target rules for targets named 08_heatmaps_from_image.bin
- # Build rule for target.
- 08_heatmaps_from_image.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 08_heatmaps_from_image.bin
- .PHONY : 08_heatmaps_from_image.bin
- # fast build rule for target.
- 08_heatmaps_from_image.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/08_heatmaps_from_image.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/08_heatmaps_from_image.bin.dir/build
- .PHONY : 08_heatmaps_from_image.bin/fast
- # Target rules for targets named 15_synchronous_custom_preprocessing.bin
- # Build rule for target.
- 15_synchronous_custom_preprocessing.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 15_synchronous_custom_preprocessing.bin
- .PHONY : 15_synchronous_custom_preprocessing.bin
- # fast build rule for target.
- 15_synchronous_custom_preprocessing.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/15_synchronous_custom_preprocessing.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/15_synchronous_custom_preprocessing.bin.dir/build
- .PHONY : 15_synchronous_custom_preprocessing.bin/fast
- # Target rules for targets named 17_synchronous_custom_output.bin
- # Build rule for target.
- 17_synchronous_custom_output.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 17_synchronous_custom_output.bin
- .PHONY : 17_synchronous_custom_output.bin
- # fast build rule for target.
- 17_synchronous_custom_output.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/17_synchronous_custom_output.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/17_synchronous_custom_output.bin.dir/build
- .PHONY : 17_synchronous_custom_output.bin/fast
- # Target rules for targets named 16_synchronous_custom_postprocessing.bin
- # Build rule for target.
- 16_synchronous_custom_postprocessing.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 16_synchronous_custom_postprocessing.bin
- .PHONY : 16_synchronous_custom_postprocessing.bin
- # fast build rule for target.
- 16_synchronous_custom_postprocessing.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/16_synchronous_custom_postprocessing.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/16_synchronous_custom_postprocessing.bin.dir/build
- .PHONY : 16_synchronous_custom_postprocessing.bin/fast
- # Target rules for targets named 13_asynchronous_custom_input_output_and_datum.bin
- # Build rule for target.
- 13_asynchronous_custom_input_output_and_datum.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 13_asynchronous_custom_input_output_and_datum.bin
- .PHONY : 13_asynchronous_custom_input_output_and_datum.bin
- # fast build rule for target.
- 13_asynchronous_custom_input_output_and_datum.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/13_asynchronous_custom_input_output_and_datum.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/13_asynchronous_custom_input_output_and_datum.bin.dir/build
- .PHONY : 13_asynchronous_custom_input_output_and_datum.bin/fast
- # Target rules for targets named 12_asynchronous_custom_output.bin
- # Build rule for target.
- 12_asynchronous_custom_output.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 12_asynchronous_custom_output.bin
- .PHONY : 12_asynchronous_custom_output.bin
- # fast build rule for target.
- 12_asynchronous_custom_output.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/12_asynchronous_custom_output.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/12_asynchronous_custom_output.bin.dir/build
- .PHONY : 12_asynchronous_custom_output.bin/fast
- # Target rules for targets named 11_asynchronous_custom_input_multi_camera.bin
- # Build rule for target.
- 11_asynchronous_custom_input_multi_camera.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 11_asynchronous_custom_input_multi_camera.bin
- .PHONY : 11_asynchronous_custom_input_multi_camera.bin
- # fast build rule for target.
- 11_asynchronous_custom_input_multi_camera.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/11_asynchronous_custom_input_multi_camera.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/11_asynchronous_custom_input_multi_camera.bin.dir/build
- .PHONY : 11_asynchronous_custom_input_multi_camera.bin/fast
- # Target rules for targets named 04_keypoints_from_images.bin
- # Build rule for target.
- 04_keypoints_from_images.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 04_keypoints_from_images.bin
- .PHONY : 04_keypoints_from_images.bin
- # fast build rule for target.
- 04_keypoints_from_images.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/04_keypoints_from_images.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/04_keypoints_from_images.bin.dir/build
- # Target rules for targets named 14_synchronous_custom_input.bin
- # Build rule for target.
- 14_synchronous_custom_input.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 14_synchronous_custom_input.bin
- .PHONY : 14_synchronous_custom_input.bin
- # fast build rule for target.
- 14_synchronous_custom_input.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/14_synchronous_custom_input.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/14_synchronous_custom_input.bin.dir/build
- .PHONY : 14_synchronous_custom_input.bin/fast
- # Target rules for targets named 10_asynchronous_custom_input.bin
- # Build rule for target.
- 10_asynchronous_custom_input.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 10_asynchronous_custom_input.bin
- .PHONY : 10_asynchronous_custom_input.bin
- # fast build rule for target.
- 10_asynchronous_custom_input.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/10_asynchronous_custom_input.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/10_asynchronous_custom_input.bin.dir/build
- .PHONY : 10_asynchronous_custom_input.bin/fast
- # Target rules for targets named 09_keypoints_from_heatmaps.bin
- # Build rule for target.
- 09_keypoints_from_heatmaps.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 09_keypoints_from_heatmaps.bin
- .PHONY : 09_keypoints_from_heatmaps.bin
- # fast build rule for target.
- 09_keypoints_from_heatmaps.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/09_keypoints_from_heatmaps.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/09_keypoints_from_heatmaps.bin.dir/build
- .PHONY : 09_keypoints_from_heatmaps.bin/fast
- # Target rules for targets named 06_face_from_image.bin
- # Build rule for target.
- 06_face_from_image.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 06_face_from_image.bin
- .PHONY : 06_face_from_image.bin
- # fast build rule for target.
- 06_face_from_image.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/06_face_from_image.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/06_face_from_image.bin.dir/build
- .PHONY : 06_face_from_image.bin/fast
- # Target rules for targets named 18_synchronous_custom_all_and_datum.bin
- # Build rule for target.
- 18_synchronous_custom_all_and_datum.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 18_synchronous_custom_all_and_datum.bin
- .PHONY : 18_synchronous_custom_all_and_datum.bin
- # fast build rule for target.
- 18_synchronous_custom_all_and_datum.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/18_synchronous_custom_all_and_datum.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/18_synchronous_custom_all_and_datum.bin.dir/build
- .PHONY : 18_synchronous_custom_all_and_datum.bin/fast
- # Target rules for targets named 07_hand_from_image.bin
- # Build rule for target.
- 07_hand_from_image.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 07_hand_from_image.bin
- .PHONY : 07_hand_from_image.bin
- # fast build rule for target.
- 07_hand_from_image.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/07_hand_from_image.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/07_hand_from_image.bin.dir/build
- .PHONY : 07_hand_from_image.bin/fast
- # Target rules for targets named 05_keypoints_from_images_multi_gpu.bin
- # Build rule for target.
- 05_keypoints_from_images_multi_gpu.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 05_keypoints_from_images_multi_gpu.bin
- .PHONY : 05_keypoints_from_images_multi_gpu.bin
- # fast build rule for target.
- 05_keypoints_from_images_multi_gpu.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/05_keypoints_from_images_multi_gpu.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/05_keypoints_from_images_multi_gpu.bin.dir/build
- .PHONY : 05_keypoints_from_images_multi_gpu.bin/fast
- # Target rules for targets named 02_whole_body_from_image_default.bin
- # Build rule for target.
- 02_whole_body_from_image_default.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 02_whole_body_from_image_default.bin
- .PHONY : 02_whole_body_from_image_default.bin
- # fast build rule for target.
- 02_whole_body_from_image_default.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/02_whole_body_from_image_default.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/02_whole_body_from_image_default.bin.dir/build
- .PHONY : 02_whole_body_from_image_default.bin/fast
- # Target rules for targets named 01_body_from_image_default.bin
- # Build rule for target.
- 01_body_from_image_default.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 01_body_from_image_default.bin
- .PHONY : 01_body_from_image_default.bin
- # fast build rule for target.
- 01_body_from_image_default.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tutorial_api_cpp/CMakeFiles/01_body_from_image_default.bin.dir/build.make examples/tutorial_api_cpp/CMakeFiles/01_body_from_image_default.bin.dir/build
- .PHONY : 01_body_from_image_default.bin/fast
- # Target rules for targets named handFromJsonTest.bin
- # Build rule for target.
- handFromJsonTest.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 handFromJsonTest.bin
- .PHONY : handFromJsonTest.bin
- # fast build rule for target.
- handFromJsonTest.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tests/CMakeFiles/handFromJsonTest.bin.dir/build.make examples/tests/CMakeFiles/handFromJsonTest.bin.dir/build
- .PHONY : handFromJsonTest.bin/fast
- # Target rules for targets named resizeTest.bin
- # Build rule for target.
- resizeTest.bin: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 resizeTest.bin
- .PHONY : resizeTest.bin
- # fast build rule for target.
- resizeTest.bin/fast:
- $(MAKE) $(MAKESILENT) -f examples/tests/CMakeFiles/resizeTest.bin.dir/build.make examples/tests/CMakeFiles/resizeTest.bin.dir/build
- .PHONY : resizeTest.bin/fast
- # Target rules for targets named pyopenpose
- # Build rule for target.
- pyopenpose: cmake_check_build_system
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 pyopenpose
- .PHONY : pyopenpose
- # fast build rule for target.
- pyopenpose/fast:
- $(MAKE) $(MAKESILENT) -f python/openpose/CMakeFiles/pyopenpose.dir/build.make python/openpose/CMakeFiles/pyopenpose.dir/build
- .PHONY : pyopenpose/fast
- # 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 "... uninstall"
- @echo "... 01_body_from_image_default.bin"
- @echo "... 02_whole_body_from_image_default.bin"
- @echo "... 03_keypoints_from_image.bin"
- @echo "... 04_keypoints_from_images.bin"
- @echo "... 05_keypoints_from_images_multi_gpu.bin"
- @echo "... 06_face_from_image.bin"
- @echo "... 07_hand_from_image.bin"
- @echo "... 08_heatmaps_from_image.bin"
- @echo "... 09_keypoints_from_heatmaps.bin"
- @echo "... 10_asynchronous_custom_input.bin"
- @echo "... 11_asynchronous_custom_input_multi_camera.bin"
- @echo "... 12_asynchronous_custom_output.bin"
- @echo "... 13_asynchronous_custom_input_output_and_datum.bin"
- @echo "... 14_synchronous_custom_input.bin"
- @echo "... 15_synchronous_custom_preprocessing.bin"
- @echo "... 16_synchronous_custom_postprocessing.bin"
- @echo "... 17_synchronous_custom_output.bin"
- @echo "... 18_synchronous_custom_all_and_datum.bin"
- @echo "... calibration.bin"
- @echo "... handFromJsonTest.bin"
- @echo "... openpose"
- @echo "... openpose.bin"
- @echo "... openpose_3d"
- @echo "... openpose_calibration"
- @echo "... openpose_core"
- @echo "... openpose_face"
- @echo "... openpose_filestream"
- @echo "... openpose_gpu"
- @echo "... openpose_gui"
- @echo "... openpose_hand"
- @echo "... openpose_net"
- @echo "... openpose_pose"
- @echo "... openpose_producer"
- @echo "... openpose_thread"
- @echo "... openpose_tracking"
- @echo "... openpose_unity"
- @echo "... openpose_utilities"
- @echo "... openpose_wrapper"
- @echo "... pyopenpose"
- @echo "... resizeTest.bin"
- @echo "... tutorial_add_module_custom_post_processing.bin"
- @echo "... tutorial_api_thread_1_user_processing_function.bin"
- @echo "... tutorial_api_thread_2_user_input_processing_output_and_datum.bin"
- .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:
- $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
- .PHONY : cmake_check_build_system
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement