diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-04-06 05:09:17 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-04-06 05:09:17 +0200 |
commit | e168e0d7a7da84bfc20d6ac68e4c61213b1edd10 (patch) | |
tree | 3f172529bf43622e36c1965ebe92419be86858dd | |
parent | spello (diff) | |
download | using-git-e168e0d7a7da84bfc20d6ac68e4c61213b1edd10.tar.gz using-git-e168e0d7a7da84bfc20d6ac68e4c61213b1edd10.tar.bz2 using-git-e168e0d7a7da84bfc20d6ac68e4c61213b1edd10.tar.xz |
m makefile
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -58,19 +58,19 @@ dvi: $(BOOK).dvi $(MAKEINFO) $(TEXIFLAGS) "$<" %.pdf: $(TEXINFO_DIR)/%.texinfo - @mkdir -p obj - cd obj && yes X | texi2pdf $(TEXIFLAGS) "../$<" - mv "obj/$@" "$@" + @mkdir -p obj/pdf + cd obj/pdf && yes X | texi2pdf $(TEXIFLAGS) "../../$<" + mv "obj/pdf/$@" "$@" %.dvi: $(TEXINFO_DIR)/%.texinfo - @mkdir -p obj - cd obj && yes X | $(TEXI2DVI) $(TEXIFLAGS) "../$<" - mv "obj/$@" "$@" + @mkdir -p obj/dvi + cd obj/dvi && yes X | $(TEXI2DVI) $(TEXIFLAGS) "../../$<" + mv "obj/dvi/$@" "$@" %.ps: $(TEXINFO_DIR)/%.texinfo - @mkdir -p obj - cd obj && yes X | texi2pdf $(TEXIFLAGS) --ps "../$<" - mv "obj/$@" "$@" + @mkdir -p obj/ps + cd obj/ps && yes X | texi2pdf $(TEXIFLAGS) --ps "../../$<" + mv "obj/ps/$@" "$@" .PHONY: install-info install-pdf install-dvi install-ps install: install-info |