xref: /vim-8.2.3635/runtime/spell/check/main.aap (revision c0880db6)
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
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 :
16