all repos — archive/dotfiles @ e23229baf851e14630889b21d956e23f13aae870

Superseded by nixfiles

emacs/.emacs.d/Makefile (view raw)

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