diff options
-rw-r--r-- | doc.am | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -1,6 +1,7 @@ # GNU Guix --- Functional package management for GNU -# Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <[email protected]> +# Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <[email protected]> # Copyright © 2013 Andreas Enge <[email protected]> +# Copyright © 2016 Taylan Ulrich Bayırlı/Kammer <[email protected]> # # This file is part of GNU Guix. # @@ -65,16 +66,16 @@ DOT_OPTIONS = \ -Nfontsize=9 -Nheight=.1 -Nwidth=.1 .dot.png: - $(DOT) -Tpng $(DOT_OPTIONS) < "$<" > "[email protected]" - mv "[email protected]" "$@" + $(DOT) -Tpng $(DOT_OPTIONS) < "$<" > "$(srcdir)/[email protected]" + mv "$(srcdir)/[email protected]" "$(srcdir)/$@" .dot.pdf: - $(DOT) -Tpdf $(DOT_OPTIONS) < "$<" > "[email protected]" - mv "[email protected]" "$@" + $(DOT) -Tpdf $(DOT_OPTIONS) < "$<" > "$(srcdir)/[email protected]" + mv "$(srcdir)/[email protected]" "$(srcdir)/$@" .dot.eps: - $(DOT) -Teps $(DOT_OPTIONS) < "$<" > "[email protected]" - mv "[email protected]" "$@" + $(DOT) -Teps $(DOT_OPTIONS) < "$<" > "$(srcdir)/[email protected]" + mv "$(srcdir)/[email protected]" "$(srcdir)/$@" .png.eps: convert "$<" "[email protected]" |