Makefile 386 B

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