diff options
| author | fukachan <fukachan> | 2001-03-15 08:19:01 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-03-15 08:19:01 +0000 |
| commit | 39fdc1d800d1eddf664dfe19b8ecb8901a49bb71 (patch) | |
| tree | 70d83183e8652b47476fb0a4be61ffdd1b1e8944 | |
| parent | 0acc1b727815646109e9e8520d1850497d5d845b (diff) | |
| download | fml8-39fdc1d800d1eddf664dfe19b8ecb8901a49bb71.tar.gz fml8-39fdc1d800d1eddf664dfe19b8ecb8901a49bb71.tar.bz2 fml8-39fdc1d800d1eddf664dfe19b8ecb8901a49bb71.zip | |
/usr/local/bin/$wrappers
| -rwxr-xr-x | fml/bin/fmlconf | 17 | ||||
| -rwxr-xr-x | fml/bin/fmldoc | 17 | ||||
| -rwxr-xr-x | fml/bin/makefml | 17 |
3 files changed, 51 insertions, 0 deletions
diff --git a/fml/bin/fmlconf b/fml/bin/fmlconf new file mode 100755 index 00000000..d584b31a --- /dev/null +++ b/fml/bin/fmlconf @@ -0,0 +1,17 @@ +#!/bin/sh +# +# Copyright (C) 2001 Ken'ichi Fukamachi +# All rights reserved. This program is free software; you can +# redistribute it and/or modify it under the same terms as Perl itself. +# +# $Id$ +# $FML$ +# + +default_prefix=/usr/local +libexec_dir=$default_prefix/libexec/fml + +exec $libexec_dir/fmlconf $* + +echo 'not reach here' +exit 0; diff --git a/fml/bin/fmldoc b/fml/bin/fmldoc new file mode 100755 index 00000000..5ab3932a --- /dev/null +++ b/fml/bin/fmldoc @@ -0,0 +1,17 @@ +#!/bin/sh +# +# Copyright (C) 2001 Ken'ichi Fukamachi +# All rights reserved. This program is free software; you can +# redistribute it and/or modify it under the same terms as Perl itself. +# +# $Id$ +# $FML$ +# + +default_prefix=/usr/local +libexec_dir=$default_prefix/libexec/fml + +exec $libexec_dir/fmldoc $* + +echo 'not reach here' +exit 0; diff --git a/fml/bin/makefml b/fml/bin/makefml new file mode 100755 index 00000000..7f47a90b --- /dev/null +++ b/fml/bin/makefml @@ -0,0 +1,17 @@ +#!/bin/sh +# +# Copyright (C) 2001 Ken'ichi Fukamachi +# All rights reserved. This program is free software; you can +# redistribute it and/or modify it under the same terms as Perl itself. +# +# $Id$ +# $FML$ +# + +default_prefix=/usr/local +libexec_dir=$default_prefix/libexec/fml + +exec $libexec_dir/makefml $* + +echo 'not reach here' +exit 0; |
