File: Makefile

package info (click to toggle)
emacs-dart-mode 1.0.7%2Bgit20250423.f82ff05-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 656 kB
  • sloc: lisp: 613; makefile: 29
file content (35 lines) | stat: -rw-r--r-- 485 bytes parent folder | download
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
all: package-lint compile test

ci: clean build compile

build:
	eask package
	eask install

compile:
	eask compile

package-lint: build
	eask lint package

test-setup: build compile
	eask install-deps --dev

test-font-lock: test-setup
	eask test ert test/test/test-font-lock.el

test-indentation: test-setup
	eask test ert test/test-indentation.el

test: test-font-lock test-indentation

checkdoc:
	eask lint checkdoc

clean:
	eask clean all

clean-elc:
	eask clean elc

.PHONY: test