source: trunk/mirroir-ipsl/Makefile @ 275

Last change on this file since 275 was 138, checked in by nanardon, 17 years ago
  • add qos graph
  • Property svn:eol-style set to native
File size: 617 bytes
Line 
1# $Id: Makefile 113 2006-07-07 10:02:33Z nanardon $
2
3.SUFFIXES: .dvi .pdf .eps .fig .png
4
5SOURCES= \
6        presentation.tex
7
8FIGURES= \
9
10IMAGES= \
11        distrib-coffee-and-array.png \
12        distrib-coffee-ifqosq_eth0-day.png
13
14EXAMPLES = \
15
16DVI=$(SOURCES:.tex=.dvi)
17PDF=$(SOURCES:.tex=.pdf)
18EPS=$(FIGURES:.fig=.eps) $(IMAGES:.png=.eps)
19
20all: pdf
21
22pdf: $(EPS) $(PDF)
23
24dvi: $(EPS) $(DVI)
25
26pesentation.dvi:
27
28%.dvi: %.tex $(EPS)
29        latex -halt-on-error $< && latex -halt-on-error $<
30
31%.pdf: %.dvi
32        dvipdf $< $@
33
34%.eps: %.fig
35        fig2dev -L eps  $< $@
36
37.png.eps:
38        convert $< $@
39
40clean:
41        rm -f $(EPS)
42        rm -f $(DVI)
43        rm -f $(PDF)
44
45.PHONY: clean
Note: See TracBrowser for help on using the repository browser.