From: Don Armstrong Date: Wed, 17 Jan 2018 00:06:20 +0000 (-0800) Subject: compile .el files for faster loading X-Git-Url: https://git.donarmstrong.com/?p=lib.git;a=commitdiff_plain;h=7cf383d0891e7703114500323173510b5b6c96cd compile .el files for faster loading --- 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