source: anr/Makefile @ 123

Last change on this file since 123 was 123, checked in by coach, 14 years ago

IA: 1) enter thales + zied 2) m.a.p

File size: 1.3 KB
Line 
1# set here all the sources files
2# required to build anr.pdf
3SOURCES=        anr.tex anr.bib section-1.tex \
4                        section-2.tex section-2.1.tex section-2.2.tex \
5                        flow.pdf section-3.1.tex section-3.2.tex \
6                        task-0.tex task-1.tex task-2.tex task-3.tex \
7                        task-4.tex task-5.tex task-6.tex \
8                        section-4.1.tex section-4.4.tex \
9                        architecture-csg.pdf architecture-hls.pdf architecture-hpc.pdf \
10                        dependence-task-h.pdf \
11                        section-4.2.tex section-5.tex \
12                        section-6.1.tex section-6.2.tex section-7.tex
13
14TABLES= table_upmc_full.tex table_upmc_short.tex \
15                table_tima_full.tex table_tima_short.tex \
16                table_lip_full.tex table_lip_short.tex \
17                table_ubs_full.tex table_ubs_short.tex \
18                table_xilinx_full.tex table_xilinx_short.tex \
19                table_inria_cairn_full.tex table_inria_cairn_short.tex \
20
21# PROGRAMS
22FIG2DEV = fig2dev
23
24%.pdf: %.fig
25        @echo "Converting $< to $@"
26        @$(FIG2DEV) -L pdf -p aaa $< $@
27
28anr.pdf: $(SOURCES) gantt1.tex gantt2.tex gantt $(TABLES)
29        @echo "Generating pdf file"
30        @pdflatex anr.tex
31        @bibtex anr
32        @./gantt < anr.gantt
33        @pdflatex anr.tex
34        @pdflatex anr.tex
35        @grep ndefine anr.log
36
37anr.bbl:anr.aux anr.bib
38        bibtex anr || true
39
40anr.aux gantt1.tex gantt2.tex $(TABLES):
41        touch $@
42
43gantt: gantt.l
44        @flex gantt.l && gcc -g lex.yy.c -o gantt
45        @rm lex.yy.c
46
47clean:
48        rm -f $(TABLES) anr.aux gantt1.tex gantt2.tex anr.pdf anr.gantt
Note: See TracBrowser for help on using the repository browser.