> -----Original Message----- > From: Iremonger, Bernard > Sent: Monday, February 16, 2015 12:20 PM > To: Mcnamara, John; dev at dpdk.org > Subject: RE: [dpdk-dev] [PATCH v4 1/5] mk: Add 'make doc-pdf' target to > convert guide docs to pdf > > > > > .PHONY: clean > > -clean: api-html-clean guides-html-clean > > +clean: api-html-clean guides-html-clean guides-latex-clean > > Hi John, > > Would it be clearer to have a guides-pdf-clean target instead of guides- > latex-clean given that there is a doc-pdf target?
Hi Bernard, Thomas made the same comment on an earlier patch so clearly it isn't obvious where the rule comes from: http://dpdk.org/ml/archives/dev/2015-January/012099.html The eason is that it is re-using the existing clean rule. My reply is here: http://dpdk.org/ml/archives/dev/2015-February/012241.html > Sphinx creates build/doc/html and build/doc/latex directories (not /build/doc/pdf) so this just reuses the existing guides-%-clean rule. John