main.aap 433 B

12345678910111213141516
  1. # Aap recipe for a dummy spell file.
  2. # This is used to check if the .spl file format changes.
  3. # Use a freshly compiled Vim if it exists.
  4. @if os.path.exists('../../../src/vim'):
  5. VIM = ../../../src/vim
  6. @else:
  7. :progsearch VIM vim
  8. all: check.latin1.spl
  9. check.latin1.spl : $VIM check_aa.aff check_aa.dic check_bb.aff check_bb.dic
  10. :sys $VIM -u NONE -e -c "mkspell! check check_aa check_bb" -c q
  11. # vim: set sts=4 sw=4 :