@@ -15,16 +15,19 @@ multiversion: Makefile
15
15
16
16
multiversion-with-api : Makefile
17
17
@echo Building multiversion with API
18
- @echo Step 1 of 4 : Building multiversion
18
+ @echo Step 1 of 5 : Building multiversion
19
19
sphinx-multiversion $(OPTS ) " $( SOURCE) " build/html
20
20
@echo " <html><head><meta http-equiv=\" refresh\" content=\" 0; url=humble/index.html\" /></head></html>" > build/html/index.html
21
- @echo Step 2 of 4 : Clone MoveIt 2 Rolling and build API
21
+ @echo Step 2 of 5 : Clone MoveIt 2 Rolling and build API
22
22
cd build/html/main && if cd moveit2; then git pull; else git clone https://github.com/ros-planning/moveit2 -b main && cd moveit2; fi && \
23
23
sed -i " s/HTML_EXTRA_STYLESHEET =.*/HTML_EXTRA_STYLESHEET = ..\/..\/..\/..\/theme.css/g" Doxyfile && DOXYGEN_OUTPUT_DIRECTORY=" ../api" doxygen && cd .. && rm -rf moveit2
24
- @echo Step 3 of 4: Clone MoveIt 2 Galactic and build API
24
+ @echo Step 3 of 5: Clone MoveIt 2 Humble and build API
25
+ cd build/html/humble && if cd moveit2; then git pull; else git clone https://github.com/ros-planning/moveit2 -b humble && cd moveit2; fi && \
26
+ sed -i " s/HTML_EXTRA_STYLESHEET =.*/HTML_EXTRA_STYLESHEET = ..\/..\/..\/..\/theme.css/g" Doxyfile && DOXYGEN_OUTPUT_DIRECTORY=" ../api" doxygen && cd .. && rm -rf moveit2
27
+ @echo Step 4 of 5: Clone MoveIt 2 Galactic and build API
25
28
cd build/html/galactic && if cd moveit2; then git pull; else git clone https://github.com/ros-planning/moveit2 -b galactic && cd moveit2; fi && \
26
29
sed -i " s/HTML_EXTRA_STYLESHEET =.*/HTML_EXTRA_STYLESHEET = ..\/..\/..\/..\/theme.css/g" Doxyfile && DOXYGEN_OUTPUT_DIRECTORY=" ../api" doxygen && cd .. && rm -rf moveit2
27
- @echo Step 4 of 4 : Clone MoveIt 2 Foxy and build API
30
+ @echo Step 5 of 5 : Clone MoveIt 2 Foxy and build API
28
31
cd build/html/foxy && if cd moveit2; then git pull; else git clone https://github.com/ros-planning/moveit2 -b foxy && cd moveit2; fi && \
29
32
sed -i " s/HTML_EXTRA_STYLESHEET =.*/HTML_EXTRA_STYLESHEET = ..\/..\/..\/..\/theme.css/g" Doxyfile && DOXYGEN_OUTPUT_DIRECTORY=" ../api" doxygen && cd .. && rm -rf moveit2
30
33
0 commit comments