aboutsummaryrefslogtreecommitdiffstats
path: root/makeallmodel
diff options
context:
space:
mode:
Diffstat (limited to 'makeallmodel')
-rwxr-xr-xmakeallmodel20
1 files changed, 20 insertions, 0 deletions
diff --git a/makeallmodel b/makeallmodel
new file mode 100755
index 0000000..c6ed23f
--- /dev/null
+++ b/makeallmodel
@@ -0,0 +1,20 @@
+#!/bin/sh
+CODE=-code=S
+for arg in $*
+do
+ case $arg in
+ -code=*)
+ CODE=$arg
+ ;;
+ esac
+done
+for model in baby little mouse cookie
+do
+ for lang in ja en
+ do
+ sh configure -yes -model=$model -lang=$lang -cflags=-O $CODE
+ make clean
+ make
+ make bindist
+ done
+done