mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-17 21:22:10 +00:00
13 lines
343 B
Makefile
13 lines
343 B
Makefile
|
.docs-build-environment: Dockerfile
|
||
|
docker build -t python-trezor-docs-build-environment .
|
||
|
touch .docs-build-environment
|
||
|
|
||
|
shell: .docs-build-environment
|
||
|
docker run -i -t -v $(subst $(notdir $(CURDIR)),,$(CURDIR)):/root -w /root python-trezor-docs-build-environment /bin/bash
|
||
|
|
||
|
html:
|
||
|
sphinx-build -b html . ./_build/
|
||
|
|
||
|
clean:
|
||
|
rm -rf _build/
|