aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-04-06 05:09:17 +0200
committerMattias Andrée <maandree@operamail.com>2015-04-06 05:09:17 +0200
commite168e0d7a7da84bfc20d6ac68e4c61213b1edd10 (patch)
tree3f172529bf43622e36c1965ebe92419be86858dd
parentspello (diff)
downloadusing-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--Makefile18
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index e29353c..73b16fa 100644
--- a/Makefile
+++ b/Makefile
@@ -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