78 lines
1.8 KiB
Makefile
78 lines
1.8 KiB
Makefile
EMACS = cask exec emacs
|
|
EARGS = -Q -batch -l package -L site-lisp/
|
|
|
|
AUTOLOADS_FILE=site-lisp/site-autoloads.el
|
|
UNWANTED=$(AUTOLOADS_FILE) site-lisp/flycheck_% site-lisp/flycheck-%
|
|
SITE_LISPS = $(addsuffix c,$(filter-out $(UNWANTED),$(wildcard site-lisp/*.el))) \
|
|
site-lisp/circe-init.elc
|
|
|
|
.PHONY: all site-lisp snippets
|
|
all: init2.elc init.elc $(AUTOLOADS_FILE) $(SITE_LISPS) snippets
|
|
|
|
### Init
|
|
|
|
%.elc: %.el
|
|
@echo "ELC $<"
|
|
@$(EMACS) $(EARGS) -eval "(byte-compile-file \"$<\")"
|
|
|
|
define tangle=
|
|
@echo "OBT $<"
|
|
@$(EMACS) $(EARGS) -l "ob-tangle" \
|
|
-eval "(org-babel-tangle-file \"$<\")"
|
|
endef
|
|
|
|
init.el: init2.el
|
|
init2.el: init.org
|
|
$(call tangle)
|
|
|
|
site-lisp/circe-init.el: init-circe.org
|
|
$(call tangle)
|
|
|
|
### Site Lisp
|
|
|
|
$(AUTOLOADS_FILE): $(SITE_LISPS)
|
|
@echo "GEN $@"
|
|
@$(EMACS) $(EARGS) \
|
|
-eval "(setq generated-autoload-file \"$(CURDIR)/$@\")" \
|
|
-eval "(update-directory-autoloads \"$(CURDIR)/site-lisp/\")"
|
|
|
|
### Snippets
|
|
|
|
SNIPPET_DIRS = $(wildcard snippets/*)
|
|
COMPILED_SNIPPETS = $(addsuffix /.yas-compiled-snippets.el, $(SNIPPET_DIRS))
|
|
|
|
%/.yas-compiled-snippets.el: %/*
|
|
@echo "YAS $(CURDIR)/snippets"
|
|
@$(EMACS) $(EARGS) -l yasnippet \
|
|
-eval "(yas-compile-directory \"$(CURDIR)/snippets\")"
|
|
|
|
snippets: $(COMPILED_SNIPPETS)
|
|
|
|
### Packages
|
|
|
|
rudel:
|
|
git clone git://github.com/scymtym/rudel.git packages/rudel
|
|
$(EMACS) $(EARGS) --visit packages/rudel/rudel-compile.el \
|
|
--eval "(eval-buffel)"
|
|
|
|
### Cleanup
|
|
|
|
clean-byte-compiled:
|
|
rm -f $(SITE_LISPS) init2.elc init.elc
|
|
|
|
clean-autoloads:
|
|
rm -f site-lisp/site-autoloads.el init2.el
|
|
|
|
clean-export:
|
|
rm -rf _publish/*.*
|
|
|
|
clean: clean-export clean-byte-compiled clean-generated
|
|
|
|
### HTML Export
|
|
|
|
export: clean-export
|
|
$(EMACS) $(EARGS) -L $(CURDIR) -l project.el -f org-publish-all
|
|
|
|
publish: export
|
|
rsync -avuz --exclude=*~ --delete _publish/ \
|
|
ryuslash.org:public_html/orgweb/dotfiles/emacs
|