summaryrefslogtreecommitdiff
path: root/fml/bin
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-01-05 05:13:48 +0000
committerfukachan <fukachan>2003-01-05 05:13:48 +0000
commit00c215b5d9749534a51f6d5a53a5aa312c2955df (patch)
tree6904461cfcf88f186c33253ab2fb9b0d2e6e016b /fml/bin
parent5ac1b0b024548a191af3f8ffc297e11ee044b92b (diff)
downloadfml8-00c215b5d9749534a51f6d5a53a5aa312c2955df.tar.gz
fml8-00c215b5d9749534a51f6d5a53a5aa312c2955df.tar.bz2
fml8-00c215b5d9749534a51f6d5a53a5aa312c2955df.zip
prepare "fml" command for convenience.
It is same as makefml except for the argument order. 1. fml $ml $command options 2. makefml $command $ml options
Diffstat (limited to 'fml/bin')
-rw-r--r--fml/bin/.cvsignore1
-rw-r--r--fml/bin/fml.in17
2 files changed, 18 insertions, 0 deletions
diff --git a/fml/bin/.cvsignore b/fml/bin/.cvsignore
index 38a57975..05d1de41 100644
--- a/fml/bin/.cvsignore
+++ b/fml/bin/.cvsignore
@@ -10,3 +10,4 @@ fmlsummary
fmlsuper
fmlthread
makefml
+fml
diff --git a/fml/bin/fml.in b/fml/bin/fml.in
new file mode 100644
index 00000000..a2b9c6ed
--- /dev/null
+++ b/fml/bin/fml.in
@@ -0,0 +1,17 @@
+#! @SHELL@
+#
+# Copyright (C) 2003 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.
+#
+# $FML: fml.in,v 1.1 2003/01/05 02:21:27 fukachan Exp $
+#
+
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libexec_dir=@libexecdir@/fml
+
+exec $libexec_dir/fml $*
+
+echo 'not reach here'
+exit 0;