X-Git-Url: https://git.donarmstrong.com/?p=org-ref.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=0000000000000000000000000000000000000000;hp=bb522b5f5b969023f303ca97079544d91780d0f9;hb=3f79a48e7c9188ce8d8a03da19ae1b2496c5d4cf;hpb=e15d6b6fd62ef1ce8f807ef6f7b0f957cf9092a5 diff --git a/Makefile b/Makefile deleted file mode 100644 index bb522b5..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -#!/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 - -