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