view runtime/indent/Make_mvc.mak @ 34655:a63ac82f6e7f

runtime(json5): add basic indent support (#14298) Commit: https://github.com/vim/vim/commit/63833bb0217fbfd5556a77103bd6c1ce78cfd996 Author: Rocco Mao <dapeng.mao@qq.com> Date: Wed Mar 27 02:02:44 2024 +0800 runtime(json5): add basic indent support (https://github.com/vim/vim/issues/14298) Signed-off-by: Rocco Mao <dapeng.mao@qq.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Tue, 26 Mar 2024 19:15:03 +0100
parents 8d6ef1b3e394
children 4f63df5700aa
line wrap: on
line source

# Makefile for running indent tests on OS Windows.
# Made on the base of a indent/Makefile.
# Restorer, 13.03.2024

.SUFFIXES:

VIM = vim.exe
VIMRUNTIME = ..

# Run the tests that didn't run yet or failed previously.
# If a test succeeds a testdir\*.out file will be written.
# If a test fails a testdir\*.fail file will be written.
test :
	@ set "VIMRUNTIME=$(VIMRUNTIME)"
	$(VIM) --clean --not-a-term -u testdir\runtest.vim


clean testclean :
	@ if exist testdir\*.fail del /q testdir\*.fail
	@ if exist testdir\*.out del /q testdir\*.out