7 lines
131 B
Makefile
7 lines
131 B
Makefile
|
all: test
|
||
|
|
||
|
test:
|
||
|
@emacs -batch -l ert -l ~/.emacs.d/core/test/config-system-test.el -f ert-run-tests-batch-and-exit
|
||
|
|
||
|
.PHONY: test
|