File: Makefile

package info (click to toggle)
avy 0.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 216 kB
  • sloc: lisp: 1,883; makefile: 20
file content (23 lines) | stat: -rw-r--r-- 358 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
emacs ?= emacs
# EMACS = emacs-24.3

LOAD = -l avy.el -l avy-test.el

.PHONY: all test clean checkdoc

all: compile test checkdoc

test:
	$(emacs) -batch $(LOAD) -f ert-run-tests-batch-and-exit

checkdoc:
	$(emacs) -batch -l targets/checkdoc.el

compile:
	$(emacs) -batch -l targets/avy-init.el

run:
	$(emacs) -Q -l targets/avy-init.el

clean:
	rm -f *.elc