mirror of
https://github.com/Raimondi/delimitMate.git
synced 2026-01-19 17:43:01 +08:00
12 lines
191 B
Makefile
12 lines
191 B
Makefile
.DEFAULT: test
|
|
|
|
test_files := $(filter-out _setup.vim,$(wildcard test/*.vim))
|
|
|
|
.PHONY: all test $(test_files)
|
|
|
|
test:
|
|
$(MAKE) -C test
|
|
|
|
$(test_files):
|
|
$(MAKE) -C test $(patsubst test/%,%,$@)
|