aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/GNUmakefile
blob: e6136b36b03b620c01149a0878f138af3d62ff70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
EMACS = /usr/bin/emacs

init.elc:

%.el: %.org
	$(EMACS) -batch -eval "(progn \
                             (package-initialize) \
                             (require 'ob-tangle) \
                             (org-babel-tangle-file \"$<\" \"$@\" \"emacs-lisp\"))"

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