source: anr/Makefile @ 290

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

Changed to adapt the document to the ANR 2011 call.

File size: 1.6 KB
RevLine 
[14]1# set here all the sources files
2# required to build anr.pdf
[278]3SOURCES=        anr.tex anr.bib anr.sty section-1.tex \
[289]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 \
[14]7                        architecture-csg.pdf architecture-hls.pdf architecture-hpc.pdf \
[21]8                        dependence-task-h.pdf \
[289]9                        task-0.tex task-1.tex task-2.tex task-3.tex \
10                        task-4.tex task-5.tex task-6.tex task-7.tex \
11                        section-project-task-schedule.tex \
12                        section-dissemination.tex \
13                        section-consortium-desc.tex \
14                        section-consortium-leader.tex \
15                        section-consortium-people.tex \
16                        section-ressources.tex \
17                        annexe-cv.tex \
18                        annexe-autre-participation.tex
[14]19
[278]20TABLES= \
[147]21                table_inria_cairn_full.tex table_inria_cairn_short.tex \
[192]22                table_inria_compsys_full.tex table_inria_compsys_short.tex \
[278]23                table_tima_full.tex table_tima_short.tex \
[99]24                table_ubs_full.tex table_ubs_short.tex \
[278]25                table_upmc_full.tex table_upmc_short.tex \
[124]26                table_bull_full.tex table_bull_short.tex \
27                table_thales_full.tex table_thales_short.tex \
[278]28                table_mds_full.tex table_mds_short.tex
[52]29
[14]30# PROGRAMS
31FIG2DEV = fig2dev
32
33%.pdf: %.fig
34        @echo "Converting $< to $@"
35        @$(FIG2DEV) -L pdf -p aaa $< $@
36
[278]37anr.pdf: $(SOURCES) gantt
38        touch gantt1.tex gantt2.tex  $(TABLES)
[14]39        @echo "Generating pdf file"
[193]40        @pdflatex anr.tex || true
[14]41        @bibtex anr
[51]42        @./gantt < anr.gantt
[14]43        @pdflatex anr.tex
[57]44        @pdflatex anr.tex
[14]45        @grep ndefine anr.log
46
47
[36]48gantt: gantt.l
49        @flex gantt.l && gcc -g lex.yy.c -o gantt
50        @rm lex.yy.c
[52]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.