From 1297dce5bd619919322a17f97a0d54fa214e2fff Mon Sep 17 00:00:00 2001 From: Charles Comstock Date: Thu, 24 Oct 2013 18:58:40 -0500 Subject: byte-compile all *.el into *.elc During the elpa install locally there are a variety of byte compilation warnings that are not caught during the existing build for cider because it only compiles cider.el into cider.elc. --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0881d6bf..f4e4439a 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,10 @@ EMACS = emacs -EMACSFLAGS = +EMACSFLAGS = -L . CASK = cask VAGRANT = vagrant -OBJECTS = cider.elc +ELS = $(wildcard *.el) +OBJECTS = $(ELS:.el=.elc) elpa: $(CASK) install -- cgit v1.2.3