summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile15
1 files changed, 9 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index b402e79..d42d0a7 100644
--- a/Makefile
+++ b/Makefile
@@ -136,20 +136,23 @@ info: blueshift.info
.PHONY: pdf
pdf: blueshift.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: blueshift.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: blueshift.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/$@ $@
# Build rules for shell auto-completion