aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: c09861cb60cda86374962dfdb3c943901b1ac342 (plain)
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

-include config.mk

DASH_DIR ?= /dev/null
GHUB_DIR ?= /dev/null
WITH_EDITOR_DIR ?= /dev/null
MAGIT_POPUP_DIR ?= /dev/null
MAGIT_DIR ?= /dev/null

EMACSBIN ?= emacs

LOAD_PATH = -L $(DASH_DIR) -L $(WITH_EDITOR_DIR) -L $(GHUB_DIR) \
	    -L $(MAGIT_POPUP_DIR) -L $(MAGIT_DIR)
BATCH = $(EMACSBIN) -Q --batch $(LOAD_PATH)

all: annexview.elc annexview-autoloads.el

.PHONY: test
test: annexview.elc
	@$(BATCH) -L . -l annexview-tests.el \
	--eval "(ert-run-tests-batch-and-exit '(not (tag interactive)))"

.PHONY: clean
clean:
	$(RM) *.elc annexview-autoloads.el

%.elc: %.el
	@$(BATCH) -f batch-byte-compile $<

%-autoloads.el: %.el
	@$(BATCH) --eval \
	"(let ((make-backup-files nil)) \
	  (update-file-autoloads \"$(CURDIR)/$<\" t \"$(CURDIR)/$@\"))"