dotfiles/emacs/.emacs.d/GNUmakefile

34 lines
887 B
Text
Raw Normal View History

2018-02-07 20:08:53 +01:00
SHELL = bash
2018-06-07 19:40:18 +02:00
EMACS := emacs
2018-02-07 20:08:53 +01:00
.SECONDARY:
VENDOR_DIRS := $(wildcard vendor-lisp/*)
BASE_DIR := $(CURDIR)
2018-06-07 19:40:18 +02:00
2018-06-07 05:48:37 +02:00
.PHONY: all snippets
all: init.elc snippets
2016-08-05 01:42:39 +02:00
%.elc: %.el
2016-09-18 00:04:54 +02:00
@echo -e "\e[31mELC\e[0m $<"
@$(EMACS) -batch \
2016-11-03 15:25:10 +01:00
-directory "$(HOME)/.emacs.d/vendor-lisp/emacs-slack" \
-directory "$(HOME)/.emacs.d/vendor-lisp/circe" \
2016-11-04 14:31:09 +01:00
-directory "$(HOME)/.emacs.d/vendor-lisp/circe-serenity" \
2016-09-07 14:31:14 +02:00
-eval "(package-initialize)" \
-eval "(byte-compile-file \"$<\")"
2016-11-24 21:41:10 +01:00
### Snippets
SNIPPET_DIRS = $(wildcard snippets/*)
COMPILED_SNIPPETS = $(addsuffix /.yas-compiled-snippets.el, $(SNIPPET_DIRS))
%/.yas-compiled-snippets.el: %/*
@echo -e "\e[36mYAS\e[0m $(BASE_DIR)/snippets"
2016-11-24 21:41:10 +01:00
@$(EMACS) -batch \
-eval "(package-initialize)" \
-l yasnippet \
-eval "(yas-compile-directory \"$(BASE_DIR)/snippets\")"
2016-11-24 21:41:10 +01:00
snippets: $(COMPILED_SNIPPETS)