18 lines
334 B
Makefile
18 lines
334 B
Makefile
|
|
#
|
|
# Make the propositional logic diagram a paper
|
|
#
|
|
|
|
|
|
paper: paper.tex pt100_paper.tex
|
|
#latex paper.tex
|
|
#dvipdf paper pdflatex cannot use eps ffs
|
|
pdflatex paper.tex
|
|
okular paper.pdf
|
|
|
|
|
|
# Remove the need for referncing graphics in subdirectories
|
|
#
|
|
pt100_paper.tex: pt100.tex
|
|
cat pt100.tex | sed 's/pt100\///' > pt100_paper.tex
|