29 lines
570 B
Makefile
29 lines
570 B
Makefile
|
|
# dia PNG is broken, text mangled // PNG = fmmdh.png ct1.png hd.png ftcontext.png
|
|
JPG = fmmdh.jpg ct1.jpg hd.jpg ftcontext.jpg sw_hw_hierarchy.jpg
|
|
|
|
%.png:%.dia
|
|
dia -t png $<
|
|
|
|
%.jpg:%.dia
|
|
dia -t jpg $<
|
|
|
|
|
|
all: ${JPG}
|
|
pdflatex sw_hw_fmea
|
|
pdflatex sw_hw_fmea
|
|
acroread sw_hw_fmea.pdf || okular sw_hw_fmea.pdf || xpdf sw_hw_fmea.pdf
|
|
|
|
bib:
|
|
bibtex sw_hw_fmea
|
|
|
|
|
|
|
|
abs: # bib
|
|
cat abs_pre.tex > abstract.tex
|
|
cat abs.tex >> abstract.tex
|
|
cat abs_end.tex >> abstract.tex
|
|
# bib abs.tex
|
|
pdflatex abstract
|
|
acroread abstract.pdf || okular abstract.pdf || xpdf abstract.pdf
|