mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-15 06:40:20 +00:00

Documentation was not fully using Automake / Autoconf and therefore needs modifications to support black magic VPATH builds. * Convert Makefile's to Autoconf-controlled Makefile.in's * Tweak loading of pygments lexer to handle runtime paths * Update .gitignore's as necessary Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
9 lines
216 B
Makefile
9 lines
216 B
Makefile
# This is necessary to support VPATH builds.
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
# This variable is used as the documentation source location in frr-sphinx.mk
|
|
SOURCESDIR = @srcdir@
|
|
|
|
include @srcdir@/../frr-sphinx.mk
|