diff options
author | Akinori Ito <aito@eie.yz.yamagata-u.ac.jp> | 2001-11-08 05:14:08 +0000 |
---|---|---|
committer | Akinori Ito <aito@eie.yz.yamagata-u.ac.jp> | 2001-11-08 05:14:08 +0000 |
commit | 68a07bf03b7624c9924065cce9ffa45497225834 (patch) | |
tree | c2adb06a909a8594445e4a3f8587c4bad46e3ecd /makeallmodel | |
download | w3m-68a07bf03b7624c9924065cce9ffa45497225834.tar.gz w3m-68a07bf03b7624c9924065cce9ffa45497225834.zip |
Initial revision
Diffstat (limited to 'makeallmodel')
-rwxr-xr-x | makeallmodel | 20 |
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 |