Skip to content

Commit 5cdbf4a

Browse files
authored
Add humble API (#395) (#397)
1 parent d13e51c commit 5cdbf4a

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Makefile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,19 @@ multiversion: Makefile
1515

1616
multiversion-with-api: Makefile
1717
@echo Building multiversion with API
18-
@echo Step 1 of 4: Building multiversion
18+
@echo Step 1 of 5: Building multiversion
1919
sphinx-multiversion $(OPTS) "$(SOURCE)" build/html
2020
@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
2222
cd build/html/main && if cd moveit2; then git pull; else git clone https://github.com/ros-planning/moveit2 -b main && cd moveit2; fi && \
2323
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
2528
cd build/html/galactic && if cd moveit2; then git pull; else git clone https://github.com/ros-planning/moveit2 -b galactic && cd moveit2; fi && \
2629
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
2831
cd build/html/foxy && if cd moveit2; then git pull; else git clone https://github.com/ros-planning/moveit2 -b foxy && cd moveit2; fi && \
2932
sed -i "s/HTML_EXTRA_STYLESHEET =.*/HTML_EXTRA_STYLESHEET = ..\/..\/..\/..\/theme.css/g" Doxyfile && DOXYGEN_OUTPUT_DIRECTORY="../api" doxygen && cd .. && rm -rf moveit2
3033

0 commit comments

Comments
 (0)