blob: 0f73d7fa79d52984e4f1f907e8db9e178bf77bfe [file] [log] [blame]
RestorerZ8291e912024-03-16 15:08:53 +01001# Makefile for running indent tests on OS Windows.
2# Made on the base of a indent/Makefile.
3# Restorer, 13.03.2024
4
5.SUFFIXES:
6
7VIM = vim.exe
8VIMRUNTIME = ..
9
10# Run the tests that didn't run yet or failed previously.
11# If a test succeeds a testdir\*.out file will be written.
12# If a test fails a testdir\*.fail file will be written.
13test :
14 @ set "VIMRUNTIME=$(VIMRUNTIME)"
15 $(VIM) --clean --not-a-term -u testdir\runtest.vim
16
17
18clean testclean :
19 @ if exist testdir\*.fail del /q testdir\*.fail
20 @ if exist testdir\*.out del /q testdir\*.out
21