2002-02-20 10:35:19 -08:00
|
|
|
#!/bin/sed -f
|
|
|
|
# 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
|
2002-02-20 10:35:19 -08:00
|
|
|
|
|
|
|
|