Update of /cvsroot/firebug/firebug/doc/chassis/figs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31326
Added Files:
.cvsignore Makefile
Log Message:
MAke and ignore file added.
--- NEW FILE: .cvsignore ---
*.eps
--- NEW FILE: Makefile ---
.SUFFIXES : .eps .ps .jpg .dia .dot
EPSPLOTS = exploded_view_2.eps \
candy_bar_injection_moldable_front.eps \
candy_bar_injection_moldable_back.eps
# graphviz dot format
#PSPLOTS = TestSensirion.eps
ALL = epsplots psplots
all: $(ALL)
epsplots: $(EPSPLOTS)
psplots: $(PSPLOTS)
#figplots: $(FIGPLOTS)
pngplots: $(PNGPLOTS)
hpglplots: $(HPGLPLOTS)
.dia.eps:
dia -e $*.eps $*.dia
.gnu.eps:
gnuplot < $*.gnu
.m.eps:
octave -q $*.m
.win.png:
gnuplot < $*.win
.hp.hpg:
gnuplot < $*.hp
.fig.eps:
fig2dev -L eps $*.fig > $*.eps
.jpg.eps:
jpeg2ps $*.jpg > $*.eps
.dot.eps:
dot -Tps $*.dot > $*.ps
.gz.bb:
zcat $* |egrep BoundingBox > $*.bb
clean:
rm -f core $(TEXPLOTS) $(PSPLOTS) *.bak *~ $(FIGPLOTS) $(EPSPLOTS)
|