for symptom abstraction in tex and diagrams now. Next add the software with FMMD. AND after thatfinish off the sigma delta ADC analysis.
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
|
|
|
|
PNG_DIA = blockdiagramcircuit2.png bubba_oscillator_block_diagram.png circuit1_dag.png circuit2h.png \
|
|
dubsim1.png invamp.png mvampcircuit.png pd.png plddouble.png plddoublesymptom.png \
|
|
poss1finalbubba.png poss2finalbubba.png pt100.png pt100_doublef.png pt100_singlef.png \
|
|
pt100_tc.png pt100_tc_sp.png shared_component.png stat_single.png three_tree.png \
|
|
tree_abstraction_levels.png vrange.png sigma_delta_block.png
|
|
|
|
|
|
|
|
%= 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
|
|
|
|
|
|
clean:
|
|
rm ${PNG_DIA}
|