summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2015-02-19 23:00:02 -0500
committerKyle Meyer <kyle@kyleam.com>2015-02-19 23:00:02 -0500
commit091ce7f02bae1acd0baf5e35ac2c7a70cffe06ac (patch)
tree58ced8498d287124847a8f83c8010bdeeae8f032 /Makefile
parentc69e429949e80dc263cf9e17488f4f5aec415738 (diff)
downloadbog-091ce7f02bae1acd0baf5e35ac2c7a70cffe06ac.tar.gz
Makefile: Byte compile before tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1ecadcd..79ead40 100644
--- a/Makefile
+++ b/Makefile
@@ -33,7 +33,7 @@ help:
@printf " test Run tests.\n"
.PHONY: test
-test:
+test: $(main_elc)
@$(EMACS) -L . -l bog-tests \
--eval "(ert-run-tests-batch-and-exit '(not (tag interactive)))"