Advertisement
Guest User

Makefile

a guest
Jun 15th, 2021
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 30.37 KB | None | 0 0
  1. # Default target executed when no arguments are given to make.
  2. default_target: all
  3. .PHONY : default_target
  4.  
  5. # Allow only one "make -f Makefile2" at a time, but pass parallelism.
  6. .NOTPARALLEL:
  7.  
  8. # Special targets provided by cmake.
  9.  
  10. # Disable implicit rules so canonical targets will work.
  11. .SUFFIXES:
  12.  
  13. # Disable VCS-based implicit rules.
  14. % : %,v
  15.  
  16. # Disable VCS-based implicit rules.
  17. % : RCS/%
  18.  
  19. # Disable VCS-based implicit rules.
  20. % : RCS/%,v
  21.  
  22. # Disable VCS-based implicit rules.
  23. % : SCCS/s.%
  24.  
  25. # Disable VCS-based implicit rules.
  26. % : s.%
  27.  
  28. .SUFFIXES: .hpux_make_needs_suffix_list
  29.  
  30. # Command-line flag to silence nested $(MAKE).
  31. $(VERBOSE)MAKESILENT = -s
  32.  
  33. #Suppress display of executed commands.
  34. $(VERBOSE).SILENT:
  35.  
  36. # A target that is always out of date.
  37. cmake_force:
  38. .PHONY : cmake_force
  39.  
  40.  
  41. # Set environment variables for the build.
  42.  
  43. # The shell in which to execute make rules.
  44. SHELL = /bin/sh
  45.  
  46. # The CMake executable.
  47. CMAKE_COMMAND = /Applications/CMake.app/Contents/bin/cmake
  48.  
  49. # The command to remove a file.
  50. RM = /Applications/CMake.app/Contents/bin/cmake -E rm -f
  51.  
  52. # Escaping for special characters.
  53. EQUALS = =
  54.  
  55. # The top-level source directory on which CMake was run.
  56. CMAKE_SOURCE_DIR = /Users/jadijosh/workspace/internships/reu_gmu/openpose
  57.  
  58. # The top-level build directory on which CMake was run.
  59. CMAKE_BINARY_DIR = /Users/jadijosh/workspace/internships/reu_gmu/openpose/build
  60.  
  61. # Targets provided globally by CMake.
  62.  
  63. # Special rule for the target install/local
  64. install/local: preinstall
  65.     @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
  66.     /Applications/CMake.app/Contents/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
  67. .PHONY : install/local
  68.  
  69. # Special rule for the target install/local
  70. install/local/fast: preinstall/fast
  71.     @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
  72.     /Applications/CMake.app/Contents/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
  73. .PHONY : install/local/fast
  74.  
  75. # Special rule for the target rebuild_cache
  76. rebuild_cache:
  77.     @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
  78.     /Applications/CMake.app/Contents/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
  79. .PHONY : rebuild_cache
  80.  
  81. # Special rule for the target rebuild_cache
  82. rebuild_cache/fast: rebuild_cache
  83. .PHONY : rebuild_cache/fast
  84.  
  85. # Special rule for the target edit_cache
  86. edit_cache:
  87.     @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
  88.     /Applications/CMake.app/Contents/bin/cmake-gui -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
  89. .PHONY : edit_cache
  90.  
  91. # Special rule for the target edit_cache
  92. edit_cache/fast: edit_cache
  93. .PHONY : edit_cache/fast
  94.  
  95. # Special rule for the target install/strip
  96. install/strip: preinstall
  97.     @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
  98.     /Applications/CMake.app/Contents/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
  99. .PHONY : install/strip
  100.  
  101. # Special rule for the target install/strip
  102. install/strip/fast: preinstall/fast
  103.     @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
  104.     /Applications/CMake.app/Contents/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
  105. .PHONY : install/strip/fast
  106.  
  107. # Special rule for the target install
  108. install: preinstall
  109.     @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
  110.     /Applications/CMake.app/Contents/bin/cmake -P cmake_install.cmake
  111. .PHONY : install
  112.  
  113. # Special rule for the target install
  114. install/fast: preinstall/fast
  115.     @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
  116.     /Applications/CMake.app/Contents/bin/cmake -P cmake_install.cmake
  117. .PHONY : install/fast
  118.  
  119. # Special rule for the target list_install_components
  120. list_install_components:
  121.     @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
  122. .PHONY : list_install_components
  123.  
  124. # Special rule for the target list_install_components
  125. list_install_components/fast: list_install_components
  126. .PHONY : list_install_components/fast
  127.  
  128. # The main all target
  129. all: cmake_check_build_system
  130.     $(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
  131.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
  132.     $(CMAKE_COMMAND) -E cmake_progress_start /Users/jadijosh/workspace/internships/reu_gmu/openpose/build/CMakeFiles 0
  133. .PHONY : all
  134.  
  135. # The main clean target
  136. clean:
  137.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
  138. .PHONY : clean
  139.  
  140. # The main clean target
  141. clean/fast: clean
  142. .PHONY : clean/fast
  143.  
  144. # Prepare targets for installation.
  145. preinstall: all
  146.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
  147. .PHONY : preinstall
  148.  
  149. # Prepare targets for installation.
  150. preinstall/fast:
  151.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
  152. .PHONY : preinstall/fast
  153.  
  154. # clear depends
  155. depend:
  156.     $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
  157. .PHONY : depend
  158.  
  159. # Target rules for targets named uninstall
  160.  
  161. # Build rule for target.
  162. uninstall: cmake_check_build_system
  163.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 uninstall
  164. .PHONY : uninstall
  165.  
  166. # fast build rule for target.
  167. uninstall/fast:
  168.     $(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build
  169. .PHONY : uninstall/fast
  170.  
  171. # Target rules for targets named openpose
  172.  
  173. # Build rule for target.
  174. openpose: cmake_check_build_system
  175.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose
  176. .PHONY : openpose
  177.  
  178. # fast build rule for target.
  179. openpose/fast:
  180.     $(MAKE) $(MAKESILENT) -f src/openpose/CMakeFiles/openpose.dir/build.make src/openpose/CMakeFiles/openpose.dir/build
  181. .PHONY : openpose/fast
  182.  
  183. # Target rules for targets named openpose_3d
  184.  
  185. # Build rule for target.
  186. openpose_3d: cmake_check_build_system
  187.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_3d
  188. .PHONY : openpose_3d
  189.  
  190. # fast build rule for target.
  191. openpose_3d/fast:
  192.     $(MAKE) $(MAKESILENT) -f src/openpose/3d/CMakeFiles/openpose_3d.dir/build.make src/openpose/3d/CMakeFiles/openpose_3d.dir/build
  193. .PHONY : openpose_3d/fast
  194.  
  195. # Target rules for targets named openpose_calibration
  196.  
  197. # Build rule for target.
  198. openpose_calibration: cmake_check_build_system
  199.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_calibration
  200. .PHONY : openpose_calibration
  201.  
  202. # fast build rule for target.
  203. openpose_calibration/fast:
  204.     $(MAKE) $(MAKESILENT) -f src/openpose/calibration/CMakeFiles/openpose_calibration.dir/build.make src/openpose/calibration/CMakeFiles/openpose_calibration.dir/build
  205. .PHONY : openpose_calibration/fast
  206.  
  207. # Target rules for targets named openpose_core
  208.  
  209. # Build rule for target.
  210. openpose_core: cmake_check_build_system
  211.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_core
  212. .PHONY : openpose_core
  213.  
  214. # fast build rule for target.
  215. openpose_core/fast:
  216.     $(MAKE) $(MAKESILENT) -f src/openpose/core/CMakeFiles/openpose_core.dir/build.make src/openpose/core/CMakeFiles/openpose_core.dir/build
  217. .PHONY : openpose_core/fast
  218.  
  219. # Target rules for targets named openpose_face
  220.  
  221. # Build rule for target.
  222. openpose_face: cmake_check_build_system
  223.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_face
  224. .PHONY : openpose_face
  225.  
  226. # fast build rule for target.
  227. openpose_face/fast:
  228.     $(MAKE) $(MAKESILENT) -f src/openpose/face/CMakeFiles/openpose_face.dir/build.make src/openpose/face/CMakeFiles/openpose_face.dir/build
  229. .PHONY : openpose_face/fast
  230.  
  231. # Target rules for targets named openpose_filestream
  232.  
  233. # Build rule for target.
  234. openpose_filestream: cmake_check_build_system
  235.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_filestream
  236. .PHONY : openpose_filestream
  237.  
  238. # fast build rule for target.
  239. openpose_filestream/fast:
  240.     $(MAKE) $(MAKESILENT) -f src/openpose/filestream/CMakeFiles/openpose_filestream.dir/build.make src/openpose/filestream/CMakeFiles/openpose_filestream.dir/build
  241. .PHONY : openpose_filestream/fast
  242.  
  243. # Target rules for targets named openpose_gpu
  244.  
  245. # Build rule for target.
  246. openpose_gpu: cmake_check_build_system
  247.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_gpu
  248. .PHONY : openpose_gpu
  249.  
  250. # fast build rule for target.
  251. openpose_gpu/fast:
  252.     $(MAKE) $(MAKESILENT) -f src/openpose/gpu/CMakeFiles/openpose_gpu.dir/build.make src/openpose/gpu/CMakeFiles/openpose_gpu.dir/build
  253. .PHONY : openpose_gpu/fast
  254.  
  255. # Target rules for targets named openpose_gui
  256.  
  257. # Build rule for target.
  258. openpose_gui: cmake_check_build_system
  259.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_gui
  260. .PHONY : openpose_gui
  261.  
  262. # fast build rule for target.
  263. openpose_gui/fast:
  264.     $(MAKE) $(MAKESILENT) -f src/openpose/gui/CMakeFiles/openpose_gui.dir/build.make src/openpose/gui/CMakeFiles/openpose_gui.dir/build
  265. .PHONY : openpose_gui/fast
  266.  
  267. # Target rules for targets named openpose_hand
  268.  
  269. # Build rule for target.
  270. openpose_hand: cmake_check_build_system
  271.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_hand
  272. .PHONY : openpose_hand
  273.  
  274. # fast build rule for target.
  275. openpose_hand/fast:
  276.     $(MAKE) $(MAKESILENT) -f src/openpose/hand/CMakeFiles/openpose_hand.dir/build.make src/openpose/hand/CMakeFiles/openpose_hand.dir/build
  277. .PHONY : openpose_hand/fast
  278.  
  279. # Target rules for targets named openpose_net
  280.  
  281. # Build rule for target.
  282. openpose_net: cmake_check_build_system
  283.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_net
  284. .PHONY : openpose_net
  285.  
  286. # fast build rule for target.
  287. openpose_net/fast:
  288.     $(MAKE) $(MAKESILENT) -f src/openpose/net/CMakeFiles/openpose_net.dir/build.make src/openpose/net/CMakeFiles/openpose_net.dir/build
  289. .PHONY : openpose_net/fast
  290.  
  291. # Target rules for targets named openpose_pose
  292.  
  293. # Build rule for target.
  294. openpose_pose: cmake_check_build_system
  295.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_pose
  296. .PHONY : openpose_pose
  297.  
  298. # fast build rule for target.
  299. openpose_pose/fast:
  300.     $(MAKE) $(MAKESILENT) -f src/openpose/pose/CMakeFiles/openpose_pose.dir/build.make src/openpose/pose/CMakeFiles/openpose_pose.dir/build
  301. .PHONY : openpose_pose/fast
  302.  
  303. #=============================================================================
  304. # Target rules for targets named openpose_producer
  305.  
  306. # Build rule for target.
  307. openpose_producer: cmake_check_build_system
  308.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_producer
  309. .PHONY : openpose_producer
  310.  
  311. # fast build rule for target.
  312. openpose_producer/fast:
  313.     $(MAKE) $(MAKESILENT) -f src/openpose/producer/CMakeFiles/openpose_producer.dir/build.make src/openpose/producer/CMakeFiles/openpose_producer.dir/build
  314. .PHONY : openpose_producer/fast
  315.  
  316. # Target rules for targets named openpose_thread
  317.  
  318. # Build rule for target.
  319. openpose_thread: cmake_check_build_system
  320.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_thread
  321. .PHONY : openpose_thread
  322.  
  323. # fast build rule for target.
  324. openpose_thread/fast:
  325.     $(MAKE) $(MAKESILENT) -f src/openpose/thread/CMakeFiles/openpose_thread.dir/build.make src/openpose/thread/CMakeFiles/openpose_thread.dir/build
  326. .PHONY : openpose_thread/fast
  327.  
  328. # Target rules for targets named openpose_tracking
  329.  
  330. # Build rule for target.
  331. openpose_tracking: cmake_check_build_system
  332.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_tracking
  333. .PHONY : openpose_tracking
  334.  
  335. # fast build rule for target.
  336. openpose_tracking/fast:
  337.     $(MAKE) $(MAKESILENT) -f src/openpose/tracking/CMakeFiles/openpose_tracking.dir/build.make src/openpose/tracking/CMakeFiles/openpose_tracking.dir/build
  338. .PHONY : openpose_tracking/fast
  339.  
  340. # Target rules for targets named openpose_unity
  341.  
  342. # Build rule for target.
  343. openpose_unity: cmake_check_build_system
  344.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_unity
  345. .PHONY : openpose_unity
  346.  
  347. # fast build rule for target.
  348. openpose_unity/fast:
  349.     $(MAKE) $(MAKESILENT) -f src/openpose/unity/CMakeFiles/openpose_unity.dir/build.make src/openpose/unity/CMakeFiles/openpose_unity.dir/build
  350. .PHONY : openpose_unity/fast
  351.  
  352. # Target rules for targets named openpose_utilities
  353.  
  354. # Build rule for target.
  355. openpose_utilities: cmake_check_build_system
  356.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_utilities
  357. .PHONY : openpose_utilities
  358.  
  359. # fast build rule for target.
  360. openpose_utilities/fast:
  361.     $(MAKE) $(MAKESILENT) -f src/openpose/utilities/CMakeFiles/openpose_utilities.dir/build.make src/openpose/utilities/CMakeFiles/openpose_utilities.dir/build
  362. .PHONY : openpose_utilities/fast
  363.  
  364. # Target rules for targets named openpose_wrapper
  365.  
  366. # Build rule for target.
  367. openpose_wrapper: cmake_check_build_system
  368.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose_wrapper
  369. .PHONY : openpose_wrapper
  370.  
  371. # fast build rule for target.
  372. openpose_wrapper/fast:
  373.     $(MAKE) $(MAKESILENT) -f src/openpose/wrapper/CMakeFiles/openpose_wrapper.dir/build.make src/openpose/wrapper/CMakeFiles/openpose_wrapper.dir/build
  374. .PHONY : openpose_wrapper/fast
  375.  
  376. # Target rules for targets named calibration.bin
  377.  
  378. # Build rule for target.
  379. calibration.bin: cmake_check_build_system
  380.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 calibration.bin
  381. .PHONY : calibration.bin
  382.  
  383. # fast build rule for target.
  384. calibration.bin/fast:
  385.     $(MAKE) $(MAKESILENT) -f examples/calibration/CMakeFiles/calibration.bin.dir/build.make examples/calibration/CMakeFiles/calibration.bin.dir/build
  386. .PHONY : calibration.bin/fast
  387.  
  388. # Target rules for targets named tutorial_add_module_custom_post_processing.bin
  389.  
  390. # Build rule for target.
  391. tutorial_add_module_custom_post_processing.bin: cmake_check_build_system
  392.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tutorial_add_module_custom_post_processing.bin
  393. .PHONY : tutorial_add_module_custom_post_processing.bin
  394.  
  395. # fast build rule for target.
  396. tutorial_add_module_custom_post_processing.bin/fast:
  397.     $(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
  398. .PHONY : tutorial_add_module_custom_post_processing.bin/fast
  399.  
  400. # Target rules for targets named tutorial_api_thread_1_user_processing_function.bin
  401.  
  402. # Build rule for target.
  403. tutorial_api_thread_1_user_processing_function.bin: cmake_check_build_system
  404.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tutorial_api_thread_1_user_processing_function.bin
  405. .PHONY : tutorial_api_thread_1_user_processing_function.bin
  406.  
  407. # fast build rule for target.
  408. tutorial_api_thread_1_user_processing_function.bin/fast:
  409.     $(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
  410. .PHONY : tutorial_api_thread_1_user_processing_function.bin/fast
  411.  
  412. # Target rules for targets named tutorial_api_thread_2_user_input_processing_output_and_datum.bin
  413.  
  414. # Build rule for target.
  415. tutorial_api_thread_2_user_input_processing_output_and_datum.bin: cmake_check_build_system
  416.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tutorial_api_thread_2_user_input_processing_output_and_datum.bin
  417. .PHONY : tutorial_api_thread_2_user_input_processing_output_and_datum.bin
  418.  
  419. # fast build rule for target.
  420. tutorial_api_thread_2_user_input_processing_output_and_datum.bin/fast:
  421.     $(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
  422. .PHONY : tutorial_api_thread_2_user_input_processing_output_and_datum.bin/fast
  423.  
  424. # Target rules for targets named openpose.bin
  425.  
  426. # Build rule for target.
  427. openpose.bin: cmake_check_build_system
  428.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openpose.bin
  429. .PHONY : openpose.bin
  430.  
  431. # fast build rule for target.
  432. openpose.bin/fast:
  433.     $(MAKE) $(MAKESILENT) -f examples/openpose/CMakeFiles/openpose.bin.dir/build.make examples/openpose/CMakeFiles/openpose.bin.dir/build
  434. .PHONY : openpose.bin/fast
  435.  
  436. # Target rules for targets named 03_keypoints_from_image.bin
  437.  
  438. # Build rule for target.
  439. 03_keypoints_from_image.bin: cmake_check_build_system
  440.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 03_keypoints_from_image.bin
  441. .PHONY : 03_keypoints_from_image.bin
  442.  
  443. # fast build rule for target.
  444. 03_keypoints_from_image.bin/fast:
  445.     $(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
  446. .PHONY : 03_keypoints_from_image.bin/fast
  447.  
  448. # Target rules for targets named 08_heatmaps_from_image.bin
  449.  
  450. # Build rule for target.
  451. 08_heatmaps_from_image.bin: cmake_check_build_system
  452.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 08_heatmaps_from_image.bin
  453. .PHONY : 08_heatmaps_from_image.bin
  454.  
  455. # fast build rule for target.
  456. 08_heatmaps_from_image.bin/fast:
  457.     $(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
  458. .PHONY : 08_heatmaps_from_image.bin/fast
  459.  
  460. # Target rules for targets named 15_synchronous_custom_preprocessing.bin
  461.  
  462. # Build rule for target.
  463. 15_synchronous_custom_preprocessing.bin: cmake_check_build_system
  464.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 15_synchronous_custom_preprocessing.bin
  465. .PHONY : 15_synchronous_custom_preprocessing.bin
  466.  
  467. # fast build rule for target.
  468. 15_synchronous_custom_preprocessing.bin/fast:
  469.     $(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
  470. .PHONY : 15_synchronous_custom_preprocessing.bin/fast
  471.  
  472. # Target rules for targets named 17_synchronous_custom_output.bin
  473.  
  474. # Build rule for target.
  475. 17_synchronous_custom_output.bin: cmake_check_build_system
  476.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 17_synchronous_custom_output.bin
  477. .PHONY : 17_synchronous_custom_output.bin
  478.  
  479. # fast build rule for target.
  480. 17_synchronous_custom_output.bin/fast:
  481.     $(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
  482. .PHONY : 17_synchronous_custom_output.bin/fast
  483.  
  484. # Target rules for targets named 16_synchronous_custom_postprocessing.bin
  485.  
  486. # Build rule for target.
  487. 16_synchronous_custom_postprocessing.bin: cmake_check_build_system
  488.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 16_synchronous_custom_postprocessing.bin
  489. .PHONY : 16_synchronous_custom_postprocessing.bin
  490.  
  491. # fast build rule for target.
  492. 16_synchronous_custom_postprocessing.bin/fast:
  493.     $(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
  494. .PHONY : 16_synchronous_custom_postprocessing.bin/fast
  495.  
  496. # Target rules for targets named 13_asynchronous_custom_input_output_and_datum.bin
  497.  
  498. # Build rule for target.
  499. 13_asynchronous_custom_input_output_and_datum.bin: cmake_check_build_system
  500.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 13_asynchronous_custom_input_output_and_datum.bin
  501. .PHONY : 13_asynchronous_custom_input_output_and_datum.bin
  502.  
  503. # fast build rule for target.
  504. 13_asynchronous_custom_input_output_and_datum.bin/fast:
  505.     $(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
  506. .PHONY : 13_asynchronous_custom_input_output_and_datum.bin/fast
  507.  
  508. # Target rules for targets named 12_asynchronous_custom_output.bin
  509.  
  510. # Build rule for target.
  511. 12_asynchronous_custom_output.bin: cmake_check_build_system
  512.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 12_asynchronous_custom_output.bin
  513. .PHONY : 12_asynchronous_custom_output.bin
  514.  
  515. # fast build rule for target.
  516. 12_asynchronous_custom_output.bin/fast:
  517.     $(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
  518. .PHONY : 12_asynchronous_custom_output.bin/fast
  519.  
  520. # Target rules for targets named 11_asynchronous_custom_input_multi_camera.bin
  521.  
  522. # Build rule for target.
  523. 11_asynchronous_custom_input_multi_camera.bin: cmake_check_build_system
  524.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 11_asynchronous_custom_input_multi_camera.bin
  525. .PHONY : 11_asynchronous_custom_input_multi_camera.bin
  526.  
  527. # fast build rule for target.
  528. 11_asynchronous_custom_input_multi_camera.bin/fast:
  529.     $(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
  530. .PHONY : 11_asynchronous_custom_input_multi_camera.bin/fast
  531.  
  532. # Target rules for targets named 04_keypoints_from_images.bin
  533.  
  534. # Build rule for target.
  535. 04_keypoints_from_images.bin: cmake_check_build_system
  536.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 04_keypoints_from_images.bin
  537. .PHONY : 04_keypoints_from_images.bin
  538.  
  539. # fast build rule for target.
  540. 04_keypoints_from_images.bin/fast:
  541.     $(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
  542.  
  543. # Target rules for targets named 14_synchronous_custom_input.bin
  544.  
  545. # Build rule for target.
  546. 14_synchronous_custom_input.bin: cmake_check_build_system
  547.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 14_synchronous_custom_input.bin
  548. .PHONY : 14_synchronous_custom_input.bin
  549.  
  550. # fast build rule for target.
  551. 14_synchronous_custom_input.bin/fast:
  552.     $(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
  553. .PHONY : 14_synchronous_custom_input.bin/fast
  554.  
  555. # Target rules for targets named 10_asynchronous_custom_input.bin
  556.  
  557. # Build rule for target.
  558. 10_asynchronous_custom_input.bin: cmake_check_build_system
  559.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 10_asynchronous_custom_input.bin
  560. .PHONY : 10_asynchronous_custom_input.bin
  561.  
  562. # fast build rule for target.
  563. 10_asynchronous_custom_input.bin/fast:
  564.     $(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
  565. .PHONY : 10_asynchronous_custom_input.bin/fast
  566.  
  567. # Target rules for targets named 09_keypoints_from_heatmaps.bin
  568.  
  569. # Build rule for target.
  570. 09_keypoints_from_heatmaps.bin: cmake_check_build_system
  571.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 09_keypoints_from_heatmaps.bin
  572. .PHONY : 09_keypoints_from_heatmaps.bin
  573.  
  574. # fast build rule for target.
  575. 09_keypoints_from_heatmaps.bin/fast:
  576.     $(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
  577. .PHONY : 09_keypoints_from_heatmaps.bin/fast
  578.  
  579. # Target rules for targets named 06_face_from_image.bin
  580.  
  581. # Build rule for target.
  582. 06_face_from_image.bin: cmake_check_build_system
  583.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 06_face_from_image.bin
  584. .PHONY : 06_face_from_image.bin
  585.  
  586. # fast build rule for target.
  587. 06_face_from_image.bin/fast:
  588.     $(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
  589. .PHONY : 06_face_from_image.bin/fast
  590.  
  591. # Target rules for targets named 18_synchronous_custom_all_and_datum.bin
  592.  
  593. # Build rule for target.
  594. 18_synchronous_custom_all_and_datum.bin: cmake_check_build_system
  595.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 18_synchronous_custom_all_and_datum.bin
  596. .PHONY : 18_synchronous_custom_all_and_datum.bin
  597.  
  598. # fast build rule for target.
  599. 18_synchronous_custom_all_and_datum.bin/fast:
  600.     $(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
  601. .PHONY : 18_synchronous_custom_all_and_datum.bin/fast
  602.  
  603. # Target rules for targets named 07_hand_from_image.bin
  604.  
  605. # Build rule for target.
  606. 07_hand_from_image.bin: cmake_check_build_system
  607.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 07_hand_from_image.bin
  608. .PHONY : 07_hand_from_image.bin
  609.  
  610. # fast build rule for target.
  611. 07_hand_from_image.bin/fast:
  612.     $(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
  613. .PHONY : 07_hand_from_image.bin/fast
  614.  
  615. # Target rules for targets named 05_keypoints_from_images_multi_gpu.bin
  616.  
  617. # Build rule for target.
  618. 05_keypoints_from_images_multi_gpu.bin: cmake_check_build_system
  619.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 05_keypoints_from_images_multi_gpu.bin
  620. .PHONY : 05_keypoints_from_images_multi_gpu.bin
  621.  
  622. # fast build rule for target.
  623. 05_keypoints_from_images_multi_gpu.bin/fast:
  624.     $(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
  625. .PHONY : 05_keypoints_from_images_multi_gpu.bin/fast
  626.  
  627. # Target rules for targets named 02_whole_body_from_image_default.bin
  628.  
  629. # Build rule for target.
  630. 02_whole_body_from_image_default.bin: cmake_check_build_system
  631.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 02_whole_body_from_image_default.bin
  632. .PHONY : 02_whole_body_from_image_default.bin
  633.  
  634. # fast build rule for target.
  635. 02_whole_body_from_image_default.bin/fast:
  636.     $(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
  637. .PHONY : 02_whole_body_from_image_default.bin/fast
  638.  
  639. # Target rules for targets named 01_body_from_image_default.bin
  640.  
  641. # Build rule for target.
  642. 01_body_from_image_default.bin: cmake_check_build_system
  643.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 01_body_from_image_default.bin
  644. .PHONY : 01_body_from_image_default.bin
  645.  
  646. # fast build rule for target.
  647. 01_body_from_image_default.bin/fast:
  648.     $(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
  649. .PHONY : 01_body_from_image_default.bin/fast
  650.  
  651. # Target rules for targets named handFromJsonTest.bin
  652.  
  653. # Build rule for target.
  654. handFromJsonTest.bin: cmake_check_build_system
  655.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 handFromJsonTest.bin
  656. .PHONY : handFromJsonTest.bin
  657.  
  658. # fast build rule for target.
  659. handFromJsonTest.bin/fast:
  660.     $(MAKE) $(MAKESILENT) -f examples/tests/CMakeFiles/handFromJsonTest.bin.dir/build.make examples/tests/CMakeFiles/handFromJsonTest.bin.dir/build
  661. .PHONY : handFromJsonTest.bin/fast
  662.  
  663. # Target rules for targets named resizeTest.bin
  664.  
  665. # Build rule for target.
  666. resizeTest.bin: cmake_check_build_system
  667.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 resizeTest.bin
  668. .PHONY : resizeTest.bin
  669.  
  670. # fast build rule for target.
  671. resizeTest.bin/fast:
  672.     $(MAKE) $(MAKESILENT) -f examples/tests/CMakeFiles/resizeTest.bin.dir/build.make examples/tests/CMakeFiles/resizeTest.bin.dir/build
  673. .PHONY : resizeTest.bin/fast
  674.  
  675. # Target rules for targets named pyopenpose
  676.  
  677. # Build rule for target.
  678. pyopenpose: cmake_check_build_system
  679.     $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 pyopenpose
  680. .PHONY : pyopenpose
  681.  
  682. # fast build rule for target.
  683. pyopenpose/fast:
  684.     $(MAKE) $(MAKESILENT) -f python/openpose/CMakeFiles/pyopenpose.dir/build.make python/openpose/CMakeFiles/pyopenpose.dir/build
  685. .PHONY : pyopenpose/fast
  686.  
  687. # Help Target
  688. help:
  689.     @echo "The following are some of the valid targets for this Makefile:"
  690.     @echo "... all (the default if no target is provided)"
  691.     @echo "... clean"
  692.     @echo "... depend"
  693.     @echo "... edit_cache"
  694.     @echo "... install"
  695.     @echo "... install/local"
  696.     @echo "... install/strip"
  697.     @echo "... list_install_components"
  698.     @echo "... rebuild_cache"
  699.     @echo "... uninstall"
  700.     @echo "... 01_body_from_image_default.bin"
  701.     @echo "... 02_whole_body_from_image_default.bin"
  702.     @echo "... 03_keypoints_from_image.bin"
  703.     @echo "... 04_keypoints_from_images.bin"
  704.     @echo "... 05_keypoints_from_images_multi_gpu.bin"
  705.     @echo "... 06_face_from_image.bin"
  706.     @echo "... 07_hand_from_image.bin"
  707.     @echo "... 08_heatmaps_from_image.bin"
  708.     @echo "... 09_keypoints_from_heatmaps.bin"
  709.     @echo "... 10_asynchronous_custom_input.bin"
  710.     @echo "... 11_asynchronous_custom_input_multi_camera.bin"
  711.     @echo "... 12_asynchronous_custom_output.bin"
  712.     @echo "... 13_asynchronous_custom_input_output_and_datum.bin"
  713.     @echo "... 14_synchronous_custom_input.bin"
  714.     @echo "... 15_synchronous_custom_preprocessing.bin"
  715.     @echo "... 16_synchronous_custom_postprocessing.bin"
  716.     @echo "... 17_synchronous_custom_output.bin"
  717.     @echo "... 18_synchronous_custom_all_and_datum.bin"
  718.     @echo "... calibration.bin"
  719.     @echo "... handFromJsonTest.bin"
  720.     @echo "... openpose"
  721.     @echo "... openpose.bin"
  722.     @echo "... openpose_3d"
  723.     @echo "... openpose_calibration"
  724.     @echo "... openpose_core"
  725.     @echo "... openpose_face"
  726.     @echo "... openpose_filestream"
  727.     @echo "... openpose_gpu"
  728.     @echo "... openpose_gui"
  729.     @echo "... openpose_hand"
  730.     @echo "... openpose_net"
  731.     @echo "... openpose_pose"
  732.     @echo "... openpose_producer"
  733.     @echo "... openpose_thread"
  734.     @echo "... openpose_tracking"
  735.     @echo "... openpose_unity"
  736.     @echo "... openpose_utilities"
  737.     @echo "... openpose_wrapper"
  738.     @echo "... pyopenpose"
  739.     @echo "... resizeTest.bin"
  740.     @echo "... tutorial_add_module_custom_post_processing.bin"
  741.     @echo "... tutorial_api_thread_1_user_processing_function.bin"
  742.     @echo "... tutorial_api_thread_2_user_input_processing_output_and_datum.bin"
  743. .PHONY : help
  744.  
  745. # Special targets to cleanup operation of make.
  746.  
  747. # Special rule to run CMake to check the build system integrity.
  748. # No rule that depends on this can have commands that come from listfiles
  749. # because they might be regenerated.
  750. cmake_check_build_system:
  751.     $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
  752. .PHONY : cmake_check_build_system
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement