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:
Jigme Datse Yli-Rasku 2024-04-25 19:15:07 -07:00
parent 3af1781847
commit c09f1b3774
1 changed files with 15 additions and 0 deletions

15
querent/Makefile Normal file
View File

@ -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