From 8d97d1f2063f19c0c679e54fc082691a495c9303 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sun, 10 Jan 2016 23:43:14 -0500 Subject: Rewrite configuration with use-package --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..54b6d92 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ + +LOAD_PATH ?= +BATCH = emacs -Q --batch $(LOAD_PATH) + +LOADDEFS_FNAME = km-emacs-autoloads.el +LOADDEFS = lisp/$(LOADDEFS_FNAME) + +ELS = $(shell find lisp -maxdepth 1 \ + -type f \( -name "*.el" -and ! -name "$(LOADDEFS_FNAME)" \) -print) + +$(LOADDEFS): $(ELS) + @$(BATCH) --eval "\ + (let* ((make-backup-files nil) \ + (default-directory \"$(CURDIR)\") \ + (generated-autoload-file (expand-file-name \"$(LOADDEFS)\"))) \ + (update-directory-autoloads \"lisp/\"))" + +%.elc: %.el + @$(BATCH) -f batch-byte-compile $< -- cgit v1.2.3