[14] | 1 | # set here all the sources files |
---|
| 2 | # required to build anr.pdf |
---|
| 3 | SOURCES= 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 \ |
---|
[36] | 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 \ |
---|
[14] | 9 | architecture-csg.pdf architecture-hls.pdf architecture-hpc.pdf \ |
---|
[21] | 10 | dependence-task-h.pdf \ |
---|
[45] | 11 | section-4.2.tex section-5.tex \ |
---|
[52] | 12 | section-6.1.tex section-6.2.tex section-7.tex |
---|
[14] | 13 | |
---|
[60] | 14 | TABLES= table_upmc_full.tex table_upmc_short.tex \ |
---|
[91] | 15 | table_tima_full.tex table_tima_short.tex \ |
---|
[147] | 16 | table_inria_cairn_full.tex table_inria_cairn_short.tex \ |
---|
[192] | 17 | table_inria_compsys_full.tex table_inria_compsys_short.tex \ |
---|
[99] | 18 | table_ubs_full.tex table_ubs_short.tex \ |
---|
| 19 | table_xilinx_full.tex table_xilinx_short.tex \ |
---|
[124] | 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 \ |
---|
[147] | 23 | table_navtel_full.tex table_navtel_short.tex \ |
---|
| 24 | table_livrable_01.tex table_livrable_02.tex |
---|
[52] | 25 | |
---|
[14] | 26 | # PROGRAMS |
---|
| 27 | FIG2DEV = fig2dev |
---|
| 28 | |
---|
| 29 | %.pdf: %.fig |
---|
| 30 | @echo "Converting $< to $@" |
---|
| 31 | @$(FIG2DEV) -L pdf -p aaa $< $@ |
---|
| 32 | |
---|
[52] | 33 | anr.pdf: $(SOURCES) gantt1.tex gantt2.tex gantt $(TABLES) |
---|
[14] | 34 | @echo "Generating pdf file" |
---|
[193] | 35 | @pdflatex anr.tex || true |
---|
[14] | 36 | @bibtex anr |
---|
[51] | 37 | @./gantt < anr.gantt |
---|
[14] | 38 | @pdflatex anr.tex |
---|
[57] | 39 | @pdflatex anr.tex |
---|
[14] | 40 | @grep ndefine anr.log |
---|
| 41 | |
---|
| 42 | anr.bbl:anr.aux anr.bib |
---|
| 43 | bibtex anr || true |
---|
| 44 | |
---|
[52] | 45 | anr.aux gantt1.tex gantt2.tex $(TABLES): |
---|
[36] | 46 | touch $@ |
---|
| 47 | |
---|
| 48 | gantt: gantt.l |
---|
| 49 | @flex gantt.l && gcc -g lex.yy.c -o gantt |
---|
| 50 | @rm lex.yy.c |
---|
[52] | 51 | |
---|
| 52 | clean: |
---|
| 53 | rm -f $(TABLES) anr.aux gantt1.tex gantt2.tex anr.pdf anr.gantt |
---|