aboutsummaryrefslogtreecommitdiffstats
path: root/makeallmodel
diff options
context:
space:
mode:
authorAkinori Ito <aito@eie.yz.yamagata-u.ac.jp>2001-11-08 05:14:08 +0000
committerAkinori Ito <aito@eie.yz.yamagata-u.ac.jp>2001-11-08 05:14:08 +0000
commit68a07bf03b7624c9924065cce9ffa45497225834 (patch)
treec2adb06a909a8594445e4a3f8587c4bad46e3ecd /makeallmodel
downloadw3m-68a07bf03b7624c9924065cce9ffa45497225834.tar.gz
w3m-68a07bf03b7624c9924065cce9ffa45497225834.zip
Initial revision
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