mirror of
https://github.com/Raimondi/delimitMate.git
synced 2025-12-25 13:41:07 +08:00
17 lines
435 B
Makefile
17 lines
435 B
Makefile
all: build/runVimTests
|
|
time build/runVimTests/bin/runVimTests.sh -0 .
|
|
|
|
build/runVimTests: build/VimTAP
|
|
git clone https://github.com/inkarkat/runVimTests $@
|
|
|
|
# Use VimTAP as directory name, as used with runVimTestsSetup.vim.
|
|
build/VimTAP:
|
|
git clone https://github.com/inkarkat/vimtap $@
|
|
|
|
test_files := $(filter-out _setup.vim,$(wildcard *.vim))
|
|
|
|
.PHONY: $(test_files)
|
|
|
|
$(test_files):
|
|
time build/runVimTests/bin/runVimTests.sh -0 $@
|