-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
35 lines (27 loc) · 908 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
-include config.mk
MAGIT_DIR ?= /dev/null
TRANSIENT_DIR ?= /dev/null
COMPAT_DIR ?= /dev/null
DASH_DIR ?= /dev/null
WITH_EDITOR_DIR ?= /dev/null
EMACSBIN ?= emacs
LOAD_PATH = -L $(COMPAT_DIR) -L $(DASH_DIR) -L $(WITH_EDITOR_DIR) \
-L $(TRANSIENT_DIR) -L $(MAGIT_DIR)
BATCH = $(EMACSBIN) -Q --batch $(LOAD_PATH)
all: magit-annex.elc magit-annex-autoloads.el
.PHONY: test
test: magit-annex.elc
@$(BATCH) -L . -l magit-annex-tests.el \
--eval "(ert-run-tests-batch-and-exit '(not (tag interactive)))"
.PHONY: clean
clean:
$(RM) magit-annex.elc magit-annex-autoloads.el
%.elc: %.el
@$(BATCH) -f batch-byte-compile $<
%-autoloads.el: %.el
@$(BATCH) --eval \
"(let ((make-backup-files nil)) \
(if (fboundp 'loaddefs-generate) \
(loaddefs-generate default-directory \"$@\" \
(list \"magit-annex-tests.el\")) \
(update-file-autoloads \"$(CURDIR)/$<\" t \"$(CURDIR)/$@\")))"