28 lines
590 B
Makefile
28 lines
590 B
Makefile
DIA_IMAGES = dc1.png inv.png fg1b.png fgampa.png fgamp.png opamp.png fg1a.png fg1.png fgampb.png op1.png
|
|
#
|
|
#
|
|
#
|
|
|
|
%.png : %.dia
|
|
dia $< -e $@
|
|
echo source $< target $@
|
|
|
|
#graphics: $(DIA_IMAGES)
|
|
|
|
paper: paper.tex invopamp_paper.tex $(DIA_IMAGES)
|
|
#latex paper.tex
|
|
#dvipdf paper pdflatex cannot use eps ffs
|
|
pdflatex paper.tex
|
|
cp paper.pdf invopamp_paper.pdf
|
|
okular invopamp_paper.pdf
|
|
|
|
|
|
# Remove the need for referncing graphics in subdirectories
|
|
#
|
|
invopamp_paper.tex: invopamp.tex paper.tex
|
|
cat invopamp.tex | sed 's/invopamp\///' > invopamp_paper.tex
|
|
|
|
bib:
|
|
bibtex paper
|
|
|