blob: bc64f2e9213ca142a4882b1769dae31f1e2d80bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sed -f
#######################################################################
# #
# 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. #
# #
#######################################################################
# 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
}
/\/\* <private> \*\//,/\/\* <\/private> \*\//d
|