mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Makefile: replace TESTS glob with find command
This commit is contained in:
2
Makefile
2
Makefile
@ -2,7 +2,7 @@
|
|||||||
EMACS_LIBS=-l core/core.el
|
EMACS_LIBS=-l core/core.el
|
||||||
EMACS=emacs --batch --eval '(setq user-emacs-directory default-directory)' $(EMACS_LIBS)
|
EMACS=emacs --batch --eval '(setq user-emacs-directory default-directory)' $(EMACS_LIBS)
|
||||||
TEST_EMACS=$(EMACS) --eval '(setq noninteractive nil)' $(EMACS_LIBS)
|
TEST_EMACS=$(EMACS) --eval '(setq noninteractive nil)' $(EMACS_LIBS)
|
||||||
TESTS=$(patsubst %,-l %, $(wildcard test/**/test-*.el))
|
TESTS=$(patsubst %,-l %, $(shell find test/ -type f -name 'test-*.el'))
|
||||||
|
|
||||||
# Tasks
|
# Tasks
|
||||||
all: autoloads install update
|
all: autoloads install update
|
||||||
|
Reference in New Issue
Block a user