1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-31 23:16:43 +02:00
vim/runtime/indent/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
463 B
Makefile
Raw Permalink Normal View History

# Portable Makefile for running indent tests.
.SUFFIXES:
.PHONY: test clean testclean
VIMPROG = vim
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:
VIMRUNTIME=$(VIMRUNTIME) $(VIMPROG) --clean --not-a-term -u testdir/runtest.vim
@echo "INDENT TESTS: DONE"
2020-07-10 22:00:53 +02:00
clean testclean:
rm -f testdir/*.fail testdir/*.out