branch: master
commit f6401a64b335dc601c0dc19943d82a04abd52e69
Author: Jackson Ray Hamilton <jack...@jacksonrayhamilton.com>
Commit: Jackson Ray Hamilton <jack...@jacksonrayhamilton.com>

    Narrow scope of `make compile'.
---
 Makefile |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 08c23eb..4519b70 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

Reply via email to