summaryrefslogtreecommitdiff
path: root/doc/Makefile
blob: 972a0804fe0ddbfedbaeca2b62c2cef05501f731 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright (c) 2019 SiFive Inc.
#
# Documentation Build

.PHONY: all
all: html

###########################
# Build HTML Documentation
###########################

.PHONY: html
html: html/index.html

# Use Sphinx to build HTML from Doxygen XML
html/index.html: sphinx/*
	sphinx-build -b html sphinx html

.PHONY: clean
clean:
	rm -rf html