1 | # set here all the sources files |
---|
2 | # required to build anr.pdf |
---|
3 | SOURCES= anr.tex anr.bib anr.sty section-1.tex \ |
---|
4 | section-2.tex section-2.1.tex section-2.2.tex \ |
---|
5 | flow2.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 | |
---|
14 | TABLES= \ |
---|
15 | table_inria_cairn_full.tex table_inria_cairn_short.tex \ |
---|
16 | table_inria_compsys_full.tex table_inria_compsys_short.tex \ |
---|
17 | table_tima_full.tex table_tima_short.tex \ |
---|
18 | table_ubs_full.tex table_ubs_short.tex \ |
---|
19 | table_upmc_full.tex table_upmc_short.tex \ |
---|
20 | table_bull_full.tex table_bull_short.tex \ |
---|
21 | table_thales_full.tex table_thales_short.tex \ |
---|
22 | table_mds_full.tex table_mds_short.tex |
---|
23 | |
---|
24 | # PROGRAMS |
---|
25 | FIG2DEV = fig2dev |
---|
26 | |
---|
27 | %.pdf: %.fig |
---|
28 | @echo "Converting $< to $@" |
---|
29 | @$(FIG2DEV) -L pdf -p aaa $< $@ |
---|
30 | |
---|
31 | anr.pdf: $(SOURCES) gantt |
---|
32 | touch gantt1.tex gantt2.tex $(TABLES) |
---|
33 | @echo "Generating pdf file" |
---|
34 | @pdflatex anr.tex || true |
---|
35 | @bibtex anr |
---|
36 | @./gantt < anr.gantt |
---|
37 | @pdflatex anr.tex |
---|
38 | @pdflatex anr.tex |
---|
39 | @grep ndefine anr.log |
---|
40 | |
---|
41 | |
---|
42 | gantt: gantt.l |
---|
43 | @flex gantt.l && gcc -g lex.yy.c -o gantt |
---|
44 | @rm lex.yy.c |
---|
45 | |
---|
46 | clean: |
---|
47 | rm -f $(TABLES) anr.aux gantt1.tex gantt2.tex anr.pdf anr.gantt |
---|