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