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.
22 lines
352 B
22 lines
352 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: |
|
@echo "Using $(shell which $(emacs))..." |
|
$(emacs) -batch $(LOAD) -f ert-run-tests-batch-and-exit |
|
|
|
run: |
|
$(emacs) -q $(LOAD) -l hydra-init.el |
|
make clean |
|
|
|
compile: |
|
$(emacs) -batch $(LOAD) -l hydra-init.el |
|
|
|
clean: |
|
rm -f *.elc
|
|
|