27 lines
756 B
Makefile
27 lines
756 B
Makefile
|
|
#
|
|
# Make the propositional logic diagram a paper
|
|
#
|
|
SOURCE = symptom_abstraction.tex
|
|
|
|
# abstract.tex algorithm.tex fmmd.tex introduction.tex paper.tex process.tex sys_abs.tex topbot.tex
|
|
|
|
paper: paper.tex symptom_abstraction_paper.tex $(SOURCE)
|
|
#cat introduction.tex | sed s/chapter/paper/ > introduction.tex
|
|
#latex paper.tex
|
|
#dvipdf paper pdflatex cannot use eps ffs
|
|
pdflatex paper.tex
|
|
mv paper.pdf symptom_ex_process_paper.pdf
|
|
okular symptom_ex_process_paper.pdf
|
|
|
|
|
|
# Remove the need for referncing graphics in subdirectories
|
|
#
|
|
symptom_abstraction_paper.tex: symptom_abstraction_paper.tex paper.tex $(SOURCE)
|
|
cat symptom_abstraction.tex | sed 's/symptom_abstraction\///' > symptom_abstraction_paper.tex
|
|
|
|
|
|
bib: $(SOURCE)
|
|
bibtex paper
|
|
|