summaryrefslogtreecommitdiffstats
path: root/.emacs.d/Makefile
blob: c4ce570ec6f7f386c6d7ace871f327d64b763ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: all site-lisp
all: init2.elc init.elc site-lisp/

%.elc: %.el
	emacs -Q -batch -eval "(byte-compile-file \"$<\")"

init2.el: init.org
	emacs -Q -batch -l org -l ob-tangle \
		-eval "(org-babel-tangle-file \"$^\")"

%/: %
	$(MAKE) -C "$(CURDIR)/$*"

rudel:
	git clone git://github.com/scymtym/rudel.git packages/rudel
	emacs -Q --batch --visit packages/rudel/rudel-compile.el \
		--eval "(eval-buffel)"