mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-03 23:47:16 +00:00 
			
		
		
		
	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>
		
			
				
	
	
		
			19 lines
		
	
	
		
			359 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			359 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
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:
 |