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
27 lines
616 B
Makefile
27 lines
616 B
Makefile
|
|
|
|
PNG_DIA = circuit1_dag.png mvampcircuit.png pd.png invamp.png shared_component.png tree_abstraction_levels.png three_tree.png blockdiagramcircuit2.png circuit2h.png bubba_oscillator_block_diagram.png dubsim1.png poss1finalbubba.png poss2finalbubba.png
|
|
|
|
|
|
|
|
%.png:%.dia
|
|
dia -t png $<
|
|
echo " Chapter 5 DIA images generated"
|
|
|
|
pdf: $(PNG_DIA)
|
|
pdflatex discussion_doc
|
|
acroread discussion_doc.pdf &
|
|
|
|
|
|
# this is the target used
|
|
# to make all images, dia gnuplot etc
|
|
#
|
|
copy: $(PNG_DIA)
|
|
echo "Chapter 5 sub make called"
|
|
|
|
|
|
|
|
bib:
|
|
bibtex discussion_doc
|
|
#makeindex opamps.glo -s opamps.ist -t opamps.glg -o opamps.gls
|