From mboxrd@z Thu Jan 1 00:00:00 1970 From: John McNamara Subject: [PATCH] mk: create pdf docs as a separate make target Date: Fri, 27 Mar 2015 14:34:43 +0000 Message-ID: <1427466883-16624-1-git-send-email-john.mcnamara@intel.com> To: dev-VfR2kkLFssw@public.gmane.org Return-path: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" 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 --- 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