mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
76dc78cd1c
Required for some unicode chars, but might as well use it everywhere to make copying easier.
9 lines
165 B
Bash
Executable file
9 lines
165 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for INFO in $(ls */info.txt); do
|
|
DIR=$(dirname $INFO)
|
|
echo "*** processing $(basename $DIR) ***"
|
|
(cd $DIR && make clean byodbins)
|
|
done
|
|
|
|
make dict2dawg
|