From f6401a64b335dc601c0dc19943d82a04abd52e69 Mon Sep 17 00:00:00 2001 From: Jackson Ray Hamilton Date: Mon, 2 May 2016 21:20:39 -0700 Subject: [PATCH] Narrow scope of `make compile'. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 08c23eb4c..4519b7073 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,10 @@ EMACS = emacs CASK = EMACS=${EMACS} cask DEPENDENCIES = .cask/ +SOURCE_FILES = \ + context-coloring.el \ + context-coloring-javascript.el \ + context-coloring-emacs-lisp.el all: uncompile compile test @@ -14,7 +18,7 @@ bench: ${DEPENDENCIES} compile: ${DEPENDENCIES} ${CASK} exec ${EMACS} -Q -batch \ -L . \ - -f batch-byte-compile *.el + -f batch-byte-compile ${SOURCE_FILES} uncompile: rm -f *.elc -- 2.39.2