You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
372 B
18 lines
372 B
EMACS = emacs |
|
# EMACS = emacs-24.3 |
|
|
|
LOAD = -l lv.el -l hydra.el -l hydra-test.el |
|
|
|
.PHONY: all test clean |
|
|
|
all: test |
|
|
|
test: |
|
$(EMACS) -batch $(LOAD) -f ert-run-tests-batch-and-exit |
|
|
|
compile: |
|
$(EMACS) -q $(LOAD) -l init.el --eval "(progn (mapc #'byte-compile-file '(\"hydra.el\" \"init.el\")) (switch-to-buffer \"*Compile-Log*\") (ert t))" |
|
make clean |
|
|
|
clean: |
|
rm -f *.elc
|
|
|