X-Git-Url: https://git.shemshak.org/~bandali/configs/blobdiff_plain/ed559ffad7f7ce1c26ca65714cfc27152db67587..7069ec695b0b15c1ea56305223bdafe92c1b3beb:/Makefile diff --git a/Makefile b/Makefile index b4ac36f..37c1f3f 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,21 @@ --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 +tangle-init: init.el +init.el: init.org + @$(EMACS) $(EMACS_ARGUMENTS) \ + --batch --load org \ + --eval '(org-babel-tangle-file "init.org")' 2>&1 -a: all +build-init: + @$(EMACS) $(EMACS_ARGUMENTS) \ + --batch -l init.el --eval '(a/build-init)' 2>&1 -i: build-init +ti: tangle-init +bi: build-init + +clean: FORCE + @rm -f init.elc + +.PHONY: clean tangle-init build-init +.FORCE: