three small changes to the template
[latex_mako] / paper_template / Makefile
index d4bbda0fc4e4c05ced81ab89a19db22127b2b5ab..e78e0f4c877c6419d17f2e34672088f85c80a23b 100644 (file)
@@ -1,15 +1,22 @@
 #!/usr/bin/make
 
-all: $(patsubst %.tex,%.pdf,$(wildcard *.tex)) 
+#all: $(patsubst %.tex,%.pdf,$(wildcard *.tex)) 
+all: project_description.pdf references.pdf
 pdf: all
 
-%.pdf: %.tex
+refs-processed.bib: 
+       perl -p -e 's/©//' refs.bib > refs-processed.bib
+       perl -0pe 's/,\s+(file|abstract) = \{.*?\}(,\n|\n)/\2/sg' refs-processed.bib |sponge refs-processed.bib
+       recode -d u8..ltex < refs-processed.bib | sponge refs-processed.bib
+
+%.pdf: %.tex refs-processed.bib
        rubber -fd $<
 
 clean: 
        rubber -d --clean *.tex
        rm -f *.tmp
        rm -f vc
+       rm -f refs-processed.bib
 
 viewpdf: all
        evince *.pdf

Benjamin Mako Hill || Want to submit a patch?