From 448f40be71dffa86a6581c3696627ccc1bdf74f2 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Mon, 19 Feb 2024 15:04:00 -0500 Subject: 4.0 documentation - Refactored Type Documentation - Added Projects - Added Type Archives - Added New Sidebar Documentation - Added String Concepts - Added Light/Dark Mode - Added New Tab Documentation - Added BNIL Guide: HLIL docs - Added new cookbook examples - Added migration guide - Added script for building docsets - Added documentation for themes - Updated all images to Ninja Edit - API Docs : Documents BasicBlockEdge and BasicBlock - API Docs : Documents CoreVariable, Variable, and VariableNameAndType - API Docs : Corrects note on `BinaryView.update_analysis` and `BinaryView.update_analysis_and_wait` to represent that analysis is run by default for you now. - Many, many other changes --- api-docs/cppdocs/Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 api-docs/cppdocs/Makefile (limited to 'api-docs/cppdocs/Makefile') diff --git a/api-docs/cppdocs/Makefile b/api-docs/cppdocs/Makefile new file mode 100644 index 00000000..d354d169 --- /dev/null +++ b/api-docs/cppdocs/Makefile @@ -0,0 +1,23 @@ +# Makefile for C++ documentation + +PYTHON ?= poetry run python + +.PHONY: help +help: + @echo "Please use \`make \` where is one of" + @echo " html to make standalone HTML files" + @echo " docset to make a Dash docset" + +.PHONY: clean +clean: + rm -rf html + rm -rf docset + rm -rf xml + +.PHONY: html +html: + $(PYTHON) ./build_min_docs.py + +.PHONY: docset +docset: + $(PYTHON) ./build_min_docs.py --docset -- cgit v1.3.1