30 lines
728 B
Makefile
30 lines
728 B
Makefile
|
.PHONY: all site-lisp
|
||
|
all: init2.elc init.elc site-lisp/
|
||
|
|
||
|
%.elc: %.el
|
||
|
emacs -Q -batch -eval "(byte-compile-file \"$<\")"
|
||
|
|
||
|
init.el: init2.el
|
||
|
init2.el: init.org
|
||
|
emacs -Q -batch -l "ob-tangle" -eval "(org-babel-tangle-file \"init.org\")"
|
||
|
|
||
|
%/: %
|
||
|
$(MAKE) -C "$(CURDIR)/$*"
|
||
|
|
||
|
rudel:
|
||
|
git clone git://github.com/scymtym/rudel.git packages/rudel
|
||
|
emacs -Q --batch --visit packages/rudel/rudel-compile.el \
|
||
|
--eval "(eval-buffel)"
|
||
|
|
||
|
clean:
|
||
|
rm -rf _publish/*.*
|
||
|
|
||
|
export: clean
|
||
|
emacs -L $(CURDIR) -L ~/.emacs.d/vendor-lisp/org/lisp \
|
||
|
-L ~/.emacs.d/vendor-lisp/org/contrib/lisp -batch -l project.el \
|
||
|
-f org-publish-all
|
||
|
|
||
|
publish: export
|
||
|
rsync -avuz --exclude=*~ --delete _publish/ \
|
||
|
ryuslash.org:public_html/orgweb/dotfiles/emacs
|