From 7cf383d0891e7703114500323173510b5b6c96cd Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Tue, 16 Jan 2018 16:06:20 -0800 Subject: [PATCH] compile .el files for faster loading --- emacs_el/configuration/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emacs_el/configuration/Makefile b/emacs_el/configuration/Makefile index f119086..667985f 100644 --- a/emacs_el/configuration/Makefile +++ b/emacs_el/configuration/Makefile @@ -8,13 +8,14 @@ EL_FILES= ORG_EL_FILES= ifeq ($(strip $(WHICH_EMACS)),) ORG_EL_FILES=$(patsubst %.org,%.el,$(wildcard *.org)) +ORG_ELC_FILES=$(patsubst %.org,%.elc,$(wildcard *.org)) EL_FILES=$(sort $(wildcard *.el) $(ORG_EL_FILES)) ELC_FILES=$(patsubst %.el,%.elc,$(EL_FILES)) endif LIB_PATH=-L . -L .. -L ../helm -all: $(ORG_EL_FILES) +all: $(ORG_ELC_FILES) EMACS=emacs -- 2.39.2