From e52e5f47c06e259eabc49385ae65bd713226c2ee Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 6 Apr 2015 14:35:20 +0200 Subject: m makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index c5831d1..8d39131 100644 --- a/Makefile +++ b/Makefile @@ -55,20 +55,23 @@ info: gates-of-tartaros.info .PHONY: pdf pdf: gates-of-tartaros.pdf %.pdf: obj/%.texinfo obj/fdl.texinfo - cd obj && yes X | texi2pdf "../$<" - mv "obj/$@" "$@" + @mkdir -p obj/pdf + cd obj/pdf && yes X | texi2pdf "../../$<" + mv "obj/pdf/$@" "$@" .PHONY: dvi dvi: gates-of-tartaros.dvi %.dvi: obj/%.texinfo obj/fdl.texinfo - cd obj && yes X | $(TEXI2DVI) "../$<" - mv "obj/$@" "$@" + @mkdir -p obj/dvi + cd obj/dvi && yes X | $(TEXI2DVI) "../../$<" + mv "obj/dvi/$@" "$@" .PHONY: ps ps: gates-of-tartaros.ps %.ps: obj/%.texinfo obj/fdl.texinfo - cd obj && yes X | texi2pdf --ps "../$<" - mv "obj/$@" "$@" + @mkdir -p obj/ps + cd obj/ps && yes X | texi2pdf --ps "../../$<" + mv "obj/ps/$@" "$@" .PHONY: cmd cmd: got.install -- cgit v1.2.3-70-g09d2