forked from FRRouting/frr
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: non-recursive doc + parallel sphinx
Sphinx actually does work with a parallel build, if the doctree creation is a separate step (which the other builds will then just read unmodified.) This can be done with the "dummy" target. This also adds "-j6" to sphinx-build and adds a "--disable-doc-html" switch on ./configure to turn on/off building HTML docs separately. Also, HTML docs are now installed by "make install" to /usr/share/doc/frr/html. Signed-off-by: David Lamparter <equinox@diac24.net>
- Loading branch information
Showing
17 changed files
with
581 additions
and
650 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
Makefile | ||
Makefile.in | ||
!Makefile | ||
mdate-sh | ||
draft-zebra-00.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
all: ALWAYS | ||
@$(MAKE) -s -C .. doc | ||
%: ALWAYS | ||
@$(MAKE) -s -C .. doc/$@ | ||
html: | ||
@$(MAKE) -s -C .. doc/user/_build/html/.buildinfo | ||
info: | ||
@$(MAKE) -s -C .. doc/user/_build/texinfo/frr.info | ||
pdf: | ||
@$(MAKE) -s -C .. doc/user/_build/latexpdf | ||
frr.info: info | ||
frr.pdf: pdf | ||
|
||
Makefile: | ||
#nothing | ||
ALWAYS: | ||
.PHONY: ALWAYS makefiles html info frr.info pdf frr.pdf | ||
.SUFFIXES: |
Oops, something went wrong.