caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* may be an other bug
@ 1996-02-15 14:19 Franck Delaplace
  1996-02-16 13:57 ` Xavier Leroy
  0 siblings, 1 reply; 2+ messages in thread
From: Franck Delaplace @ 1996-02-15 14:19 UTC (permalink / raw)
  To: caml-list



I built a script shell to add signature to .mli 
as follow

When I use it for global variabale as hash table 
the signature is 

let L = hashtbl__new 30 ;;

L : hashtbl__t  _a 

instead of the real instantion of L 

======================= 
if test -f $1.ml
then
	echo $1.mli  "transformation  en cours"
else
	echo le fichier $1.ml n existe pas
	exit 
fi

sed '/$1/d' $1.ml|sed '/\#open/w .tmp' > /dev/null #recuperation des open sauf les open ayan comme nom le fichier passe

if test -f $1.mli
then
	camlc -c $1.mli			# on compile le fichier .mli
	echo "(* -------------------------------*)" >.tmp
	cat $1.mli >> .tmp		# insertion dans .tmp du fichier	
fi

echo "(* fonction de  $1.ml  -----------------*)" 	>>.tmp
camlc  -c -i $1.ml >> .tmp
mv .tmp  $1.mli


echo "verifier le fichier genere "





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~1996-02-16 15:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1996-02-15 14:19 may be an other bug Franck Delaplace
1996-02-16 13:57 ` Xavier Leroy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).