actually producting pdf files. In each chapter directory, copy.tex is the source file for the chapter. A makefile should exist in each of these directories, and this when supplied the arg copy will make all images form dia/gnuplot etc
21 lines
196 B
Makefile
21 lines
196 B
Makefile
|
|
# Makefile to create all graphics file etc
|
|
#
|
|
# Place all .dia files here as .png targets
|
|
#
|
|
DIA =
|
|
|
|
|
|
doc: $(DIA)
|
|
|
|
#
|
|
#bib:
|
|
#
|
|
# bibtex HR230003_combined_o2_co_sensor
|
|
#
|
|
|
|
|
|
%.png:%.dia
|
|
dia -t png $<
|
|
|