28 lines
307 B
Makefile
28 lines
307 B
Makefile
|
|
# Makefile to create all graphics file etc
|
|
#
|
|
# Place all .dia files here as .png targets
|
|
#
|
|
DIA = components_81_euler.png
|
|
|
|
|
|
doc: $(DIA) xfmea_fmmd_comp.png
|
|
|
|
#
|
|
#bib:
|
|
#
|
|
# bibtex HR230003_combined_o2_co_sensor
|
|
#
|
|
|
|
xfmea_fmmd_comp.png:
|
|
gnuplot < xfmea_comp.gpt
|
|
|
|
|
|
%.png:%.dia
|
|
dia -t png $<
|
|
|
|
|
|
|
|
copy:
|
|
echo $@
|