summaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/Makefile
blob: d7528a4d31981655224a1239c2a57719f81f926f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
.PHONY: all site-lisp
all: init2.elc init.elc site-lisp/oni-smt.elc site-lisp/appt-init.elc \
	site-lisp/jabber-init.elc site-lisp/org-init.elc \
	site-lisp/gnus-init.elc site-lisp/drd.elc

%.elc: %.el
	@echo "ELC $<"
	@cask exec emacs -Q -batch -eval "(byte-compile-file \"$<\")"

init.el: init2.el
init2.el: init.org org/intro.org
	@echo "OBT $<"
	@emacs -Q -batch -l "ob-tangle" -eval "(org-babel-tangle-file \"init.org\")"

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

clean:
	rm -rf _publish/*.*

export: clean
	emacs -L $(CURDIR) -L ~/.emacs.d/vendor-lisp/org/lisp \
		-L ~/.emacs.d/vendor-lisp/org/contrib/lisp -batch -l project.el \
		-f org-publish-all

publish: export
	rsync -avuz --exclude=*~ --delete _publish/ \
		ryuslash.org:public_html/orgweb/dotfiles/emacs