Index: /anr/Makefile
===================================================================
--- /anr/Makefile	(revision 14)
+++ /anr/Makefile	(revision 14)
@@ -0,0 +1,29 @@
+# set here all the sources files
+# required to build anr.pdf
+SOURCES=	anr.tex anr.bib section-1.tex \
+			section-2.tex section-2.1.tex section-2.2.tex \
+		 	flow.pdf section-3.1.tex section-3.2.tex \
+			section-4.1.tex \
+			architecture-csg.pdf architecture-hls.pdf architecture-hpc.pdf \
+			dependence-dev.pdf dependence-test.pdf \
+			section-4.2.tex
+
+# PROGRAMS
+FIG2DEV = fig2dev
+
+%.pdf: %.fig
+	@echo "Converting $< to $@"
+	@$(FIG2DEV) -L pdf -p aaa $< $@
+
+anr.pdf: $(SOURCES)
+	@echo "Generating pdf file"
+	@pdflatex anr.tex 
+	@bibtex anr 
+	@pdflatex anr.tex 
+	@grep ndefine anr.log
+
+anr.bbl:anr.aux anr.bib
+	bibtex anr || true
+
+anr.aux:
+	touch anr.aux
