Bram Moolenaar | c0880db | 2010-01-17 14:38:06 +0100 | [diff] [blame] | 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 : |