We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b2f22f commit ccb320aCopy full SHA for ccb320a
Makefile
@@ -6,15 +6,16 @@ ELS = nix.el nix-company.el nix-drv-mode.el nix-format.el \
6
nix-shell.el nix-store.el
7
ELCS = $(ELS:.el=.elc)
8
9
+TESTS = tests/nix-mode-tests.el tests/nix-font-lock-tests.el
10
+
11
DESTDIR =
12
PREFIX = /usr
13
14
all: $(ELCS) nix-mode.info nix-mode.html AUTHORS.md
15
-check:
16
+check: $(TESTS) $(ELCS)
17
emacs -batch -L . \
- -l tests/nix-mode-tests.el \
- -l tests/nix-font-lock-tests.el \
18
+ $(foreach test,$(TESTS),-l $(test)) \
19
-f ert-run-tests-batch-and-exit
20
21
install: $(ELCS) nix-mode.info nix-mode.html AUTHORS.md
0 commit comments