Remove make compile

This commit is contained in:
Henrik Lissner 2016-05-24 23:38:19 -04:00
parent 8e2b8f60f1
commit 75241e52a2
3 changed files with 6 additions and 11 deletions

View file

@ -342,11 +342,11 @@ e.g. (doom-fix-unicode \"DejaVu Sans\" '(?⚠ ?★ ?λ ?➊ ?➋ ?➌ ?➍ ?➎
(defun doom-byte-compile ()
"Byte compile the core and library .el files in ~/.emacs.d"
(interactive)
(mapc (lambda (f) (packed-byte-compile-file (concat doom-emacs-dir "/" f)))
(mapc (lambda (f) (byte-compile-file (concat doom-emacs-dir "/" f)))
'("init.el" "private/my-commands.el" "private/my-bindings.el"
"core/core.el" "core/core-defuns.el" "core/core-ui.el"))
(byte-recompile-directory (concat doom-core-dir "/defuns") 0 t)
(byte-recompile-directory (concat doom-modules-dir "/defuns") 0 t)
(byte-recompile-directory doom-core-dir 0 t)
(byte-recompile-directory doom-modules-dir 0 t)
(message "Compiled!"))
(provide 'core-defuns)