]> git.donarmstrong.com Git - org-ref.git/commitdiff
add back my makefile master
authorDon Armstrong <don@donarmstrong.com>
Mon, 1 Jun 2015 15:24:10 +0000 (08:24 -0700)
committerDon Armstrong <don@donarmstrong.com>
Mon, 1 Jun 2015 15:24:10 +0000 (08:24 -0700)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..bb522b5
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+#!/usr/bin/make -f
+
+WHICH_EMACS:=$(shell which emacs >/dev/null 2>&1 || echo "fail")
+
+ELC_FILES=
+ifeq ($(strip $(WHICH_EMACS)),)
+ELC_FILES=$(patsubst %.el,%.elc,$(wildcard *.el)) org-ref.elc doi-utils.elc pubmed.elc
+endif
+
+all: $(ELC_FILES)
+
+EMACS=emacs
+
+%.elc: %.el
+       $(EMACS) -q -no-site-file -L . -L .. -L ../helm --no-site-file -batch -f batch-byte-compile $<;
+
+
+%.el: %.org
+       $(EMACS) -batch -q -no-site-file --visit $< --funcall org-babel-tangle
+
+