all repos — archive/dotfiles @ e23229baf851e14630889b21d956e23f13aae870

Superseded by nixfiles

Replace emacs hook with makefile

Alan Pearce
commit

e23229baf851e14630889b21d956e23f13aae870

parent

9595844538a4bcf53bec628874605f8c49d589c5

1 file changed, 19 insertions(+), 0 deletions(-)

changed files
A emacs/.emacs.d/Makefile
@@ -0,0 +1,19 @@
+define EMACS_TANGLE +(progn\ + (setq vc-follow-symlinks nil)\ + (find-file \"init.org\")\ + (require 'ob-tangle)\ + (org-babel-tangle nil \"init.el\")) +endef + +all: init.elc +.PHONY: all + +init.el: + @emacs --batch --no-init-file --eval "$(EMACS_TANGLE)" --kill + +init.elc: init.el + @emacs --batch --no-init-file --funcall batch-byte-compile init.el + +clean: + rm init.el init.elc