1# Portable Makefile for running indent tests.
2
3VIM = vim
4VIMRUNTIME = ..
5
6# Run the tests that didn't run yet or failed previously.
7# If a test succeeds a testdir/*.out file will be written.
8# If a test fails a testdir/*.fail file will be written.
9test:
10	VIMRUNTIME=$(VIMRUNTIME) $(VIM) --clean --not-a-term -u testdir/runtest.vim
11
12
13clean testclean:
14	rm -f testdir/*.fail testdir/*.out
15