Skip to content

Commit 1458333

Browse files
committed
Fix Makefile rule names
1 parent cbfff7d commit 1458333

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ JEKYLL_CMD = bundle exec jekyll
2626

2727
.DEFAULT_GOAL := html
2828

29-
.PHONY: clean run_ninja clean_ninja html serve_html clean_html build_doxygen_html clean_doxygen_html build_doxygen_adoc clean_doxygen_adoc fetch_submodules clean_submodules clean_everything
29+
.PHONY: clean run_ninja clean_ninja html serve_html clean_html build_doxygen_xml clean_doxygen_xml build_doxygen_adoc clean_doxygen_adoc fetch_submodules clean_submodules clean_everything
3030

3131
$(BUILD_DIR):
3232
@mkdir -p $@
@@ -54,7 +54,7 @@ $(PICO_EXAMPLES_DIR)/CMakeLists.txt: | $(PICO_SDK_DIR)/CMakeLists.txt $(PICO_EXA
5454
doxygentoasciidoc/__main__.py:
5555
git submodule update --init doxygentoasciidoc
5656

57-
fetch_submodules: $(ALL_SUBMODULE_CMAKELISTS)
57+
fetch_submodules: $(ALL_SUBMODULE_CMAKELISTS) doxygentoasciidoc/__main__.py
5858

5959
# Get rid of the submodules
6060
clean_submodules:
@@ -94,7 +94,7 @@ clean_doxygen_adoc:
9494
if [ -d $(ASCIIDOC_DOXYGEN_DIR) ]; then $(MAKE) clean_ninja; fi
9595
rm -rf $(ASCIIDOC_DOXYGEN_DIR)
9696

97-
clean_everything: clean_submodules clean_doxygen_html clean
97+
clean_everything: clean_submodules clean_doxygen_xml clean
9898

9999
# AUTO_NINJABUILD contains all the parts of the ninjabuild where the rules themselves depend on other files
100100
$(AUTO_NINJABUILD): $(SCRIPTS_DIR)/create_auto_ninjabuild.py $(DOCUMENTATION_INDEX) $(SITE_CONFIG) | $(BUILD_DIR)

0 commit comments

Comments
 (0)