25 lines
468 B
Smarty
Executable File
25 lines
468 B
Smarty
Executable File
#!/bin/sh
|
|
# $Id$
|
|
|
|
OLIB=`ocamlc -where`
|
|
LIB=LIBDIR/camlp4
|
|
|
|
INTERFACES=
|
|
OPTS=
|
|
INCL="-I ."
|
|
while test "" != "$1"; do
|
|
case $1 in
|
|
-I) INCL="$INCL -I $2"; shift;;
|
|
*)
|
|
j=`basename $1 .cmi`
|
|
if test "$j.cmi" = "$1"; then
|
|
first="`expr "$j" : '\(.\)' | tr 'a-z' 'A-Z'`"
|
|
rest="`expr "$j" : '.\(.*\)'`"
|
|
INTERFACES="$INTERFACES $first$rest"
|
|
else
|
|
OPTS="$OPTS $1"
|
|
fi;;
|
|
esac
|
|
shift
|
|
done
|