mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-23 13:47:13 -04:00
Both the ISA and design documentations use some parameters generated from the RTL (ports, parameters). As of now, they are committed to the repository and can be out of sync with the code. This PR removes them from the repository and freshly generates them from the code when building HTML files. This PR also removes prebuilt HTML files (design & ISA docs) and generates them when building the top-level Read the Docs documentation (make -C docs).
12 lines
231 B
Makefile
12 lines
231 B
Makefile
all: prepare sphinx
|
|
|
|
prepare:
|
|
make -C 04_cv32a65x/riscv priv-html unpriv-html
|
|
make -C 04_cv32a65x/design design-html
|
|
|
|
make -C 06_cv64a6_mmu/riscv priv-html unpriv-html
|
|
|
|
sphinx:
|
|
sphinx-build . _build
|
|
|
|
.PHONY: all prepare sphinx
|