RestorerZ | 8291e91 | 2024-03-16 15:08:53 +0100 | [diff] [blame] | 1 | # 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 | |
RestorerZ | cd33faf | 2024-07-04 17:47:16 +0200 | [diff] [blame] | 7 | VIMPROG = vim.exe |
RestorerZ | 8291e91 | 2024-03-16 15:08:53 +0100 | [diff] [blame] | 8 | VIMRUNTIME = .. |
| 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. |
| 13 | test : |
| 14 | @ set "VIMRUNTIME=$(VIMRUNTIME)" |
RestorerZ | cd33faf | 2024-07-04 17:47:16 +0200 | [diff] [blame] | 15 | $(VIMPROG) --clean --not-a-term -u testdir\runtest.vim |
RestorerZ | 8291e91 | 2024-03-16 15:08:53 +0100 | [diff] [blame] | 16 | |
| 17 | |
| 18 | clean testclean : |
| 19 | @ if exist testdir\*.fail del /q testdir\*.fail |
| 20 | @ if exist testdir\*.out del /q testdir\*.out |
| 21 | |