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!
26 lines
311 B
Makefile
26 lines
311 B
Makefile
|
|
# Makefile to create all graphics file etc
|
|
#
|
|
# Place all .dia files here as .png targets
|
|
#
|
|
DIA = distcon.png
|
|
#component_fm_rel.png component_fm_rel_ana.png component_fm_rel_ana_subj_obj.png
|
|
|
|
|
|
doc: $(DIA)
|
|
|
|
#
|
|
#bib:
|
|
#
|
|
# bibtex HR230003_combined_o2_co_sensor
|
|
#
|
|
|
|
|
|
%.png:%.dia
|
|
dia -t png $<
|
|
|
|
|
|
|
|
copy: doc
|
|
echo $@
|