Script to build all languages

This commit is contained in:
Andrew Scheller 2015-11-18 13:16:39 +00:00
parent bd3b39de2c
commit 01e22c88c3
1 changed files with 7 additions and 0 deletions

7
make_all.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
for d in src/??; do
if [ -d $d ]; then
l=$(basename $d)
make LANG=$l
fi
done