blob: a47351f7ec896040dfbaed56cef553f5506d103f [file] [log] [blame]
Bram Moolenaarc0880db2010-01-17 14:38:06 +01001# 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
10all: check.latin1.spl
11
12check.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 :