home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / runtime / dos / spell / check / main.aap < prev   
Encoding:
Text File  |  2010-08-15  |  448 b   |  16 lines

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