source: anr/Makefile @ 26

Last change on this file since 26 was 21, checked in by coach, 14 years ago
File size: 638 bytes
Line 
1# set here all the sources files
2# required to build anr.pdf
3SOURCES=        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 \
6                        section-4.1.tex \
7                        architecture-csg.pdf architecture-hls.pdf architecture-hpc.pdf \
8                        dependence-task-h.pdf \
9                        section-4.2.tex
10
11# PROGRAMS
12FIG2DEV = fig2dev
13
14%.pdf: %.fig
15        @echo "Converting $< to $@"
16        @$(FIG2DEV) -L pdf -p aaa $< $@
17
18anr.pdf: $(SOURCES)
19        @echo "Generating pdf file"
20        @pdflatex anr.tex
21        @bibtex anr
22        @pdflatex anr.tex
23        @grep ndefine anr.log
24
25anr.bbl:anr.aux anr.bib
26        bibtex anr || true
27
28anr.aux:
29        touch anr.aux
Note: See TracBrowser for help on using the repository browser.