X-Git-Url: https://git.shemshak.org/gitweb.cgi/~bandali/configs/blobdiff_plain/ed559ffad7f7ce1c26ca65714cfc27152db67587..4bd5061ca56d32bf539446ea877eb098c05a6d5b:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index b4ac36f..3b3a23f 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,19 @@ --include lib/borg/borg.mk +EMACS ?= emacs +EMACS_ARGUMENTS ?= -Q -bootstrap-borg: - @git submodule--helper clone --name borg --path lib/borg \ - --url git@github.com:emacscollective/borg.git - @cd lib/borg; git symbolic-ref HEAD refs/heads/master - @cd lib/borg; git reset --hard HEAD +.PHONY: all help clean build build-init quick bootstrap +.FORCE: -a: all +tangle-init: init.el +init.el: init.org + @$(EMACS) $(EMACS_ARGUMENTS) \ + --batch --load org \ + --eval '(org-babel-tangle-file "init.org")' 2>&1 -i: build-init +build-init: + @rm -f init.elc + @$(EMACS) $(EMACS_ARGUMENTS) \ + --batch -l init.el --eval '(a/build-init)' 2>&1 + +ti: tangle-init +bi: build-init