This patch separates out the PDF generation from 'make doc' to 'make doc-pdf'. The docs can now be built as follows:
make doc make doc-pdf This is to: * Reduce the PDF dependencies for people who only require the Html docs. * Speed up the doc build. Signed-off-by: John McNamara <john.mcnamara at intel.com> --- mk/rte.sdkdoc.mk | 2 +- mk/rte.sdkroot.mk | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/mk/rte.sdkdoc.mk b/mk/rte.sdkdoc.mk index 5b44083..b0303f2 100644 --- a/mk/rte.sdkdoc.mk +++ b/mk/rte.sdkdoc.mk @@ -60,7 +60,7 @@ help: @$(MAKE) -rR showconfigs | sed 's,^,\t\t\t\t,' .PHONY: all -all: api-html guides-html guides-pdf +all: api-html guides-html .PHONY: clean clean: api-html-clean guides-html-clean guides-pdf-clean diff --git a/mk/rte.sdkroot.mk b/mk/rte.sdkroot.mk index e8423b0..eace554 100644 --- a/mk/rte.sdkroot.mk +++ b/mk/rte.sdkroot.mk @@ -101,9 +101,10 @@ testall: install uninstall: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkinstall.mk $@ -.PHONY: doc help +.PHONY: doc help doc-pdf doc: doc-all help: doc-help +doc-pdf: doc-guides-pdf doc-%: $(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkdoc.mk $* -- 1.8.1.4