Added Makefile
This is enough to get me working PDF output. I'm not sure if I can automate it to put into Laidout to get print output, or if I just run that from pngs that I'm already creating and manually bring them into Laidout.
This commit is contained in:
parent
3af1781847
commit
c09f1b3774
|
@ -0,0 +1,15 @@
|
|||
TEXFILES = querent.tex 000-header.tex 900-footer.tex dedication.tex copyleft.tex acknowledements.tex aboutquerent.tex discovery.tex setup-cm.tex
|
||||
CLEANFILES = *.dvi *.log *.aux *.lof *.lot *.toc *.png
|
||||
|
||||
clean:
|
||||
rm $(CLEANFILES)
|
||||
echo "Nothing to clean"
|
||||
|
||||
querent.dvi: $(TEXFILES)
|
||||
latex querent.tex
|
||||
latex querent.tex
|
||||
|
||||
querent.pdf: querent.dvi
|
||||
dvipng -D 300 -T bbox querent.dvi -o"querent%02d.png"
|
||||
find *.png -exec mogrify -shave 250x250 \{\} \;
|
||||
convert *.png querent.pdf
|
Loading…
Reference in New Issue