diff options
author | Ben Gamari <ben@smart-cactus.org> | 2016-02-07 11:21:42 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-02-08 12:46:49 +0100 |
commit | bfd47453c76c7fb849c50eed750f61e28dc5cbdb (patch) | |
tree | 780962886103957b9e3b13a19b651d4e9a1baf24 /doc/Makefile | |
parent | 8a4c949bfc731ef0dcd83d557da278d162152fb5 (diff) |
doc: Switch to Sphinx
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/Makefile b/doc/Makefile index 5f88b708..f4356f43 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,6 +1,8 @@ -include config.mk +SPHINX_BUILD ?= sphinx-build -XML_DOC = haddock -INSTALL_XML_DOC = haddock +all : html -include docbook-xml.mk +.PHONY : html + +html : + $(SPHINX_BUILD) -b html . .build-html |