From 87a658640433ded84f3366c9023dabb865f94d6f Mon Sep 17 00:00:00 2001 From: Konrad Hinsen Date: Tue, 26 Mar 2019 17:30:36 +0100 Subject: [PATCH] Fix the Makefile for reproducible_article --- module2/ressources/replicable_article/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module2/ressources/replicable_article/Makefile b/module2/ressources/replicable_article/Makefile index cc72e87..ad16c82 100644 --- a/module2/ressources/replicable_article/Makefile +++ b/module2/ressources/replicable_article/Makefile @@ -4,7 +4,7 @@ ARCHIVE_FILES=article.org biblio.bib Makefile all: article.pdf %.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 pdflatex $^ @@ -13,13 +13,13 @@ all: article.pdf pdflatex $^ %.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) tar --xform "s|^|$(ARCHIVE)/|" -zcf $@ $^ 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 rm -f article.html article.tex article.pdf figure.pdf data.csv measurements.txt IEEEtran.bst IEEEtran.cls \#article.org\# -- 2.18.1