with --- $git checkout 9e924279c9f7354322209f8b2818aaed67a3a1b1~1 submission_thesis/CH2_FMEA/mvamp.png found it with $git log --diff-filter=D --summary which showed me all commits with deletes in! superb!
25 lines
440 B
Makefile
25 lines
440 B
Makefile
|
|
PNG = fmmdh.png ct1.png hd.png ftcontext.png
|
|
|
|
%.png:%.dia
|
|
dia -t png $<
|
|
|
|
|
|
all: ${PNG}
|
|
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
|