Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@
# specific language governing permissions and limitations
# under the License.

.PHONY: help install-deps build-api-docs build-docs clean-docs serve-docs
.PHONY: help install-deps build-api-docs build-docs clean clean-docs serve-docs

help:
@echo "Available targets:"
@echo " install-deps - Install Python dependencies"
@echo " build-api-docs - Build API documentation with Doxygen"
@echo " build-docs - Build MkDocs documentation"
@echo " clean - Clean local CMake build artifacts"
@echo " clean-docs - Clean documentation build artifacts"
@echo " serve-docs - Serve documentation locally for development"
@echo " all - Build all documentation"
Expand All @@ -41,6 +42,9 @@ build-docs:
mkdocs build --clean && \
echo "MkDocs site built in site/"

clean:
rm -rf build cmake-build cmake-build-debug cmake-build-release

clean-docs:
rm -rf mkdocs/site
rm -rf mkdocs/docs/api
Expand Down
Loading