Initial revision

This commit is contained in:
Akinori Ito
2001-11-08 05:14:08 +00:00
commit 68a07bf03b
305 changed files with 104639 additions and 0 deletions

20
makeallmodel Executable file
View File

@@ -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