68 lines
1.6 KiB
Makefile
68 lines
1.6 KiB
Makefile
# -*- Makefile -*-
|
|
|
|
#########################################################################
|
|
# #
|
|
# 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 GNU Library General Public License, with #
|
|
# the special exception on linking described in file ../LICENSE. #
|
|
# #
|
|
#########################################################################
|
|
|
|
# This file lists all standard library modules.
|
|
# It is used in particular to know what to expunge in toplevels.
|
|
|
|
STDLIB_MODULES=\
|
|
arg \
|
|
array \
|
|
arrayLabels \
|
|
buffer \
|
|
bytes \
|
|
bytesLabels \
|
|
callback \
|
|
camlinternalFormat \
|
|
camlinternalFormatBasics \
|
|
camlinternalLazy \
|
|
camlinternalMod \
|
|
camlinternalOO \
|
|
char \
|
|
complex \
|
|
digest \
|
|
filename \
|
|
format \
|
|
gc \
|
|
genlex \
|
|
hashtbl \
|
|
int32 \
|
|
int64 \
|
|
lazy \
|
|
lexing \
|
|
list \
|
|
listLabels \
|
|
map \
|
|
marshal \
|
|
moreLabels \
|
|
nativeint \
|
|
obj \
|
|
oo \
|
|
parsing \
|
|
pervasives \
|
|
printexc \
|
|
printf \
|
|
queue \
|
|
random \
|
|
scanf \
|
|
set \
|
|
sort \
|
|
stack \
|
|
stdLabels \
|
|
stream \
|
|
string \
|
|
stringLabels \
|
|
sys \
|
|
weak
|