LaundrySorcery

IP-Enabling a 2011 Washing Machine
Log | Files | Refs

commit 0bd867f29c515e173a81a4139e711df0929e8aca
parent 622e695c0c602af5c4f60e7834b3257dc92564b1
Author: Dominik Schmidt <das1993@hotmail.com>
Date:   Sun,  1 Jul 2018 18:09:15 +0000

Add png export options to documentation makefile

Diffstat:
doc/Makefile | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/doc/Makefile b/doc/Makefile @@ -25,3 +25,9 @@ Graph/simulation.pdf: Graph/simulation.gnuplot Graph/simulation.csv %.svg: %.asy asy --libgs="" -f svg -o $@ $< + +%.svg: %.gnuplot + gnuplot -e "set terminal \"svg\" enhanced; set output \"$@\"" $< + +%.png: %.gnuplot + gnuplot -e "set terminal \"pngcairo\" enhanced; set output \"$@\"" $<