| 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-issues.tex section-position.tex \
|
|---|
| 5 | flow2.pdf section-etat-de-art.tex section-objectif.tex \
|
|---|
| 6 | section-project-description.tex section-project-management.tex \
|
|---|
| 7 | architecture-csg.pdf architecture-hls.pdf architecture-hpc.pdf \
|
|---|
| 8 | dependence-task-h.pdf \
|
|---|
| 9 | task-management.tex task-backbone.tex \
|
|---|
| 10 | task-csg.tex task-frontend.tex \
|
|---|
| 11 | task-backend.tex task-hpc.tex \
|
|---|
| 12 | task-demonstrator.tex task-dissemination.tex \
|
|---|
| 13 | section-project-task-schedule.tex \
|
|---|
| 14 | section-dissemination.tex \
|
|---|
| 15 | section-consortium-desc.tex \
|
|---|
| 16 | section-consortium-leader.tex \
|
|---|
| 17 | section-consortium-people.tex \
|
|---|
| 18 | section-ressources.tex \
|
|---|
| 19 | annexe-cv.tex \
|
|---|
| 20 | annexe-autre-participation.tex \
|
|---|
| 21 | annexe-reponse.tex
|
|---|
| 22 |
|
|---|
| 23 | TABLES= \
|
|---|
| 24 | table_inria_cairn_full.tex table_inria_cairn_short.tex \
|
|---|
| 25 | table_inria_compsys_full.tex table_inria_compsys_short.tex \
|
|---|
| 26 | table_tima_full.tex table_tima_short.tex \
|
|---|
| 27 | table_ubs_full.tex table_ubs_short.tex \
|
|---|
| 28 | table_upmc_full.tex table_upmc_short.tex \
|
|---|
| 29 | table_bull_full.tex table_bull_short.tex \
|
|---|
| 30 | table_thales_full.tex table_thales_short.tex \
|
|---|
| 31 | table_mds_full.tex table_mds_short.tex
|
|---|
| 32 |
|
|---|
| 33 | # PROGRAMS
|
|---|
| 34 | FIG2DEV = fig2dev
|
|---|
| 35 |
|
|---|
| 36 | %.pdf: %.fig
|
|---|
| 37 | @echo "Converting $< to $@"
|
|---|
| 38 | @$(FIG2DEV) -L pdf -p aaa $< $@
|
|---|
| 39 |
|
|---|
| 40 | anr.pdf: $(SOURCES) gantt
|
|---|
| 41 | mkdir -p tmp
|
|---|
| 42 | touch gantt.tex gantt1.tex gantt2.tex $(TABLES)
|
|---|
| 43 | @echo "Generating pdf file"
|
|---|
| 44 | @pdflatex anr.tex || true
|
|---|
| 45 | @bibtex anr
|
|---|
| 46 | @rm -f table_*.tex
|
|---|
| 47 | @./gantt < anr.gantt
|
|---|
| 48 | @pdflatex anr.tex
|
|---|
| 49 | @pdflatex anr.tex
|
|---|
| 50 | @grep ndefine anr.log
|
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 | gantt: gantt.l
|
|---|
| 54 | @flex gantt.l && gcc -g lex.yy.c -o gantt
|
|---|
| 55 | @rm lex.yy.c
|
|---|
| 56 |
|
|---|
| 57 | clean:
|
|---|
| 58 | rm -f anr.aux anr.bbl anr.blg anr.log anr.out anr.toc anr.pdf
|
|---|
| 59 | rm -f $(TABLES) gantt.tex gantt1.tex gantt2.tex anr.gantt
|
|---|