]> git.donarmstrong.com Git - deb_pkgs/scowl.git/blob - speller/Makefile
New upstream version 2018.04.16
[deb_pkgs/scowl.git] / speller / Makefile
1
2 all: 
3         @echo "Please use hunspell or aspell as target"
4
5 .aspell: make-aspell-dict
6         make -C src deaccent
7         ./make-aspell-dict
8         touch .aspell
9 aspell: .aspell
10
11 .hunspell: make-hunspell-dict add-no-suggest en.aff en.dic.supp README_en.txt.sh
12         ./make-hunspell-dict -all
13         touch .hunspell
14 hunspell: .hunspell
15
16 clean:
17         rm -rf hunspell/ *.zip
18         cat to-clean | xargs rm -f
19
20 to-clean: .gitignore
21         echo `cat .gitignore | grep -v '^#'` | tr ' ' '\n' | grep -v hunspell/ | grep -v \.zip > to-clean