source: anr/Makefile @ 289

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

Changed to adapt the document to the ANR 2011 call.

File size: 1.6 KB
Line 
1# set here all the sources files
2# required to build anr.pdf
3SOURCES=        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-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
19
20TABLES= \
21                table_inria_cairn_full.tex table_inria_cairn_short.tex \
22                table_inria_compsys_full.tex table_inria_compsys_short.tex \
23                table_tima_full.tex table_tima_short.tex \
24                table_ubs_full.tex table_ubs_short.tex \
25                table_upmc_full.tex table_upmc_short.tex \
26                table_bull_full.tex table_bull_short.tex \
27                table_thales_full.tex table_thales_short.tex \
28                table_mds_full.tex table_mds_short.tex
29
30# PROGRAMS
31FIG2DEV = fig2dev
32
33%.pdf: %.fig
34        @echo "Converting $< to $@"
35        @$(FIG2DEV) -L pdf -p aaa $< $@
36
37anr.pdf: $(SOURCES) gantt
38        touch gantt1.tex gantt2.tex  $(TABLES)
39        @echo "Generating pdf file"
40        @pdflatex anr.tex || true
41        @bibtex anr
42        @./gantt < anr.gantt
43        @pdflatex anr.tex
44        @pdflatex anr.tex
45        @grep ndefine anr.log
46
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.