From 3d177c4d8b330756a2699a7e84bc6c3f7e6ec77d Mon Sep 17 00:00:00 2001 From: Damien Pollet Date: Wed, 19 Oct 2016 12:03:25 +0200 Subject: [PATCH] Nicer order in main makefile --- book/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/book/Makefile b/book/Makefile index 49ea835..e437d9e 100644 --- a/book/Makefile +++ b/book/Makefile @@ -9,17 +9,16 @@ LATEXCHAPTERTEMPLATE = support/templates/chapter.latex.mustache HTMLTEMPLATE = support/templates/html.mustache HTMLCHAPTERTEMPLATE = $(HTMLTEMPLATE) -include support/makefiles/help.mk -include support/makefiles/prepare.mk - .DEFAULT_GOAL = help - .phony: all book chapters all: pdf html ## Build everything in all formats book: pdfbook htmlbook ## Full book only, all formats chapters: pdfchapters htmlchapters ## Separate chapters, all formats +include support/makefiles/help.mk +include support/makefiles/prepare.mk + include support/makefiles/pdf.mk include support/makefiles/html.mk include support/makefiles/epub.mk