aboutsummaryrefslogtreecommitdiffstats
path: root/makeallmodel
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-03-10 18:07:20 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-03-10 18:07:20 +0000
commitac34c0690da6fe2f6d523430a5ce40081717b06a (patch)
tree5d690c53cf7a35780e620181d309f038ce24dbfe /makeallmodel
parentfix indent (diff)
downloadw3m-ac34c0690da6fe2f6d523430a5ce40081717b06a.tar.gz
w3m-ac34c0690da6fe2f6d523430a5ce40081717b06a.zip
* which: deleted
* makeallmomdel: deleted From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to '')
-rwxr-xr-xmakeallmodel20
1 files changed, 0 insertions, 20 deletions
diff --git a/makeallmodel b/makeallmodel
deleted file mode 100755
index c6ed23f..0000000
--- a/makeallmodel
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/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