-
Notifications
You must be signed in to change notification settings - Fork 43
/
Makefile
36 lines (25 loc) · 893 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
EMACS ?= emacs
CASK ?= cask
.PHONY: test test-deferred test-concurrent compile clean print-deps travis-ci
test: test-deferred test-deferred-compiled test-concurrent
# test-concurrent-compiled
test-deferred:
$(CASK) exec ert-runner test/deferred-test.el
test-deferred-compiled: deferred.elc
$(CASK) exec ert-runner test/deferred-test.el -l deferred.elc
test-concurrent:
$(CASK) exec ert-runner test/concurrent-test.el
test-concurrent-compiled: concurrent.elc
$(CASK) exec ert-runner test/concurrent-test.el -l concurrent.elc
compile: deferred.elc concurrent.elc
%.elc: %.el
$(EMACS) -batch -L . -f batch-byte-compile $<
clean:
rm -rfv *.elc
print-deps:
@echo "----------------------- Dependencies -----------------------"
$(EMACS) --version
@echo "------------------------------------------------------------"
travis-ci: print-deps
$(MAKE) clean test
$(MAKE) compile test