Merge pull request #68 from lurch/make_all

Script to build all languages
This commit is contained in:
Philip Howard 2015-11-19 22:14:29 +00:00
commit 388a6720dd
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