Commit 87a65864 authored by Konrad Hinsen's avatar Konrad Hinsen

Fix the Makefile for reproducible_article

parent d8da1106
...@@ -4,7 +4,7 @@ ARCHIVE_FILES=article.org biblio.bib Makefile ...@@ -4,7 +4,7 @@ ARCHIVE_FILES=article.org biblio.bib Makefile
all: article.pdf all: article.pdf
%.tex: %.org %.tex: %.org
emacs -q -batch --eval "(setq enable-local-eval t)" --eval "(setq enable-local-variables t)" $^ --funcall org-latex-export-to-latex emacs -batch --eval="(package-initialize)" --eval="(setq enable-local-eval t)" --eval="(setq enable-local-variables t)" $^ --funcall=org-latex-export-to-latex
%.pdf: %.tex %.pdf: %.tex
pdflatex $^ pdflatex $^
...@@ -13,13 +13,13 @@ all: article.pdf ...@@ -13,13 +13,13 @@ all: article.pdf
pdflatex $^ pdflatex $^
%.html: %.org %.html: %.org
emacs -q -batch --eval "(setq enable-local-eval t)" --eval "(setq enable-local-variables t)" $^ --funcall org-html-export-to-html emacs -batch --eval="(package-initialize)" --eval="(setq enable-local-eval t)" --eval="(setq enable-local-variables t)" $^ --funcall=org-html-export-to-html
../$(ARCHIVE).tgz: $(ARCHIVE_FILES) ../$(ARCHIVE).tgz: $(ARCHIVE_FILES)
tar --xform "s|^|$(ARCHIVE)/|" -zcf $@ $^ tar --xform "s|^|$(ARCHIVE)/|" -zcf $@ $^
clean: clean:
rm -f article.aux article.bbl article.blg article.log article.out *~ rm -f article.aux article.bbl article.blg article.log article.toc article.out *~
distclean: clean distclean: clean
rm -f article.html article.tex article.pdf figure.pdf data.csv measurements.txt IEEEtran.bst IEEEtran.cls \#article.org\# rm -f article.html article.tex article.pdf figure.pdf data.csv measurements.txt IEEEtran.bst IEEEtran.cls \#article.org\#
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment