source: anr-2010/Makefile

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

IA

File size: 1.6 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_inria_cairn_full.tex table_inria_cairn_short.tex \
17                table_inria_compsys_full.tex table_inria_compsys_short.tex \
18                table_ubs_full.tex table_ubs_short.tex \
19                table_xilinx_full.tex table_xilinx_short.tex \
20                table_bull_full.tex table_bull_short.tex \
21                table_thales_full.tex table_thales_short.tex \
22                table_zied_full.tex table_zied_short.tex \
23                table_navtel_full.tex table_navtel_short.tex \
24                table_livrable_01.tex table_livrable_02.tex
25
26# PROGRAMS
27FIG2DEV = fig2dev
28
29%.pdf: %.fig
30        @echo "Converting $< to $@"
31        @$(FIG2DEV) -L pdf -p aaa $< $@
32
33anr.pdf: $(SOURCES) gantt1.tex gantt2.tex gantt $(TABLES)
34        @echo "Generating pdf file"
35        @pdflatex anr.tex || true
36        @bibtex anr
37        @./gantt < anr.gantt
38        @pdflatex anr.tex
39        @pdflatex anr.tex
40        @grep ndefine anr.log
41
42anr.bbl:anr.aux anr.bib
43        bibtex anr || true
44
45anr.aux gantt1.tex gantt2.tex $(TABLES):
46        touch $@
47
48gantt: gantt.l
49        @flex gantt.l && gcc -g lex.yy.c -o gantt
50        @rm lex.yy.c
51
52clean:
53        rm -f $(TABLES) anr.aux gantt1.tex gantt2.tex anr.pdf anr.gantt
Note: See TracBrowser for help on using the repository browser.