2002-02-20 10:35:19 -08:00
|
|
|
#!/bin/sed -f
|
2011-07-27 07:17:02 -07:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# #
|
|
|
|
# OCaml #
|
|
|
|
# #
|
|
|
|
# Xavier Leroy, projet Cristal, INRIA Rocquencourt #
|
|
|
|
# #
|
|
|
|
# Copyright 2002 Institut National de Recherche en Informatique et #
|
|
|
|
# en Automatique. All rights reserved. This file is distributed #
|
|
|
|
# under the terms of the Q Public License version 1.0. #
|
|
|
|
# #
|
|
|
|
#######################################################################
|
|
|
|
|
2002-02-20 10:35:19 -08:00
|
|
|
# Remove private parts from runtime include files, before installation
|
|
|
|
# in /usr/local/lib/ocaml/caml
|
|
|
|
|
|
|
|
/\/\* <include \.\.\/config\/m\.h> \*\// {
|
|
|
|
r ../config/m.h
|
|
|
|
d
|
|
|
|
}
|
|
|
|
/\/\* <include \.\.\/config\/s\.h> \*\// {
|
|
|
|
r ../config/s.h
|
|
|
|
d
|
|
|
|
}
|
2002-03-17 22:55:42 -08:00
|
|
|
/\/\* <private> \*\//,/\/\* <\/private> \*\//d
|