1999-11-17 10:59:06 -08:00
|
|
|
#########################################################################
|
|
|
|
# #
|
|
|
|
# Objective Caml #
|
|
|
|
# #
|
|
|
|
# Xavier Leroy, projet Cristal, INRIA Rocquencourt #
|
|
|
|
# #
|
|
|
|
# Copyright 1999 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. #
|
|
|
|
# #
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
1996-02-13 08:29:09 -08:00
|
|
|
include ../config/Makefile
|
1995-10-24 08:46:19 -07:00
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
CAMLRUN=../boot/ocamlrun
|
|
|
|
CAMLC=$(CAMLRUN) ../boot/ocamlc -I ../boot
|
|
|
|
CAMLLEX=$(CAMLRUN) ../boot/ocamllex
|
1998-04-06 09:34:56 -07:00
|
|
|
INCLUDES=-I ../utils -I ../parsing -I ../typing -I ../bytecomp -I ../asmcomp \
|
|
|
|
-I ../driver
|
1995-05-04 03:15:53 -07:00
|
|
|
COMPFLAGS=$(INCLUDES)
|
|
|
|
LINKFLAGS=$(INCLUDES)
|
|
|
|
|
2000-08-10 02:58:08 -07:00
|
|
|
all: ocamldep ocamlprof ocamlcp ocamlmktop
|
1995-10-24 08:46:19 -07:00
|
|
|
|
|
|
|
# The dependency generator
|
1995-08-25 06:54:58 -07:00
|
|
|
|
2000-10-02 07:18:05 -07:00
|
|
|
CAMLDEP_OBJ=ocamldep.cmo
|
2000-04-21 01:13:22 -07:00
|
|
|
CAMLDEP_IMPORTS=misc.cmo config.cmo clflags.cmo terminfo.cmo \
|
1999-01-27 02:53:54 -08:00
|
|
|
linenum.cmo warnings.cmo location.cmo longident.cmo pstream.cmo \
|
|
|
|
syntaxerr.cmo parser.cmo lexer.cmo parse.cmo
|
1995-08-25 06:54:58 -07:00
|
|
|
|
2000-10-02 07:18:05 -07:00
|
|
|
ocamldep: $(CAMLDEP_OBJ)
|
|
|
|
$(CAMLC) $(LINKFLAGS) -o ocamldep $(CAMLDEP_IMPORTS) $(CAMLDEP_OBJ)
|
1995-08-25 06:54:58 -07:00
|
|
|
|
|
|
|
clean::
|
1996-04-30 07:53:58 -07:00
|
|
|
rm -f ocamldep
|
1995-08-25 06:54:58 -07:00
|
|
|
|
1995-10-24 08:46:19 -07:00
|
|
|
install::
|
2000-08-10 02:58:08 -07:00
|
|
|
cp ocamldep $(BINDIR)/ocamldep$(EXE)
|
1995-10-24 08:46:19 -07:00
|
|
|
|
|
|
|
# The profiler
|
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
CSLPROF=ocamlprof.cmo
|
2000-04-21 01:13:22 -07:00
|
|
|
CSLPROF_IMPORTS=misc.cmo config.cmo clflags.cmo terminfo.cmo \
|
1998-11-05 00:04:40 -08:00
|
|
|
linenum.cmo warnings.cmo location.cmo longident.cmo pstream.cmo \
|
1997-08-22 01:55:41 -07:00
|
|
|
syntaxerr.cmo parser.cmo lexer.cmo parse.cmo
|
1995-10-24 08:46:19 -07:00
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
ocamlprof: $(CSLPROF) profiling.cmo
|
|
|
|
$(CAMLC) $(LINKFLAGS) -o ocamlprof $(CSLPROF_IMPORTS) $(CSLPROF)
|
1995-10-24 08:46:19 -07:00
|
|
|
|
1998-04-06 09:34:56 -07:00
|
|
|
ocamlcp: ocamlcp.cmo
|
|
|
|
$(CAMLC) $(LINKFLAGS) -o ocamlcp main_args.cmo ocamlcp.cmo
|
|
|
|
|
1995-10-24 08:46:19 -07:00
|
|
|
install::
|
2000-08-10 02:58:08 -07:00
|
|
|
cp ocamlprof $(BINDIR)/ocamlprof$(EXE)
|
|
|
|
cp ocamlcp $(BINDIR)/ocamlcp$(EXE)
|
1995-11-13 06:25:17 -08:00
|
|
|
cp profiling.cmi profiling.cmo $(LIBDIR)
|
1995-10-24 08:46:19 -07:00
|
|
|
|
|
|
|
clean::
|
1998-04-06 09:34:56 -07:00
|
|
|
rm -f ocamlprof ocamlcp
|
1995-10-24 08:46:19 -07:00
|
|
|
|
|
|
|
# To make custom toplevels
|
|
|
|
|
1998-10-20 05:52:02 -07:00
|
|
|
ocamlmktop: ocamlmktop.tpl ../config/Makefile
|
|
|
|
sed -e 's|%%BINDIR%%|$(BINDIR)|' ocamlmktop.tpl > ocamlmktop
|
|
|
|
chmod +x ocamlmktop
|
|
|
|
|
1995-10-24 08:46:19 -07:00
|
|
|
install::
|
1996-04-30 07:53:58 -07:00
|
|
|
cp ocamlmktop $(BINDIR)/ocamlmktop
|
1995-10-24 08:46:19 -07:00
|
|
|
|
1998-10-20 05:52:02 -07:00
|
|
|
clean::
|
|
|
|
rm -f ocamlmktop
|
|
|
|
|
1999-12-17 02:04:52 -08:00
|
|
|
# Converter ocaml 2.04 to 3
|
|
|
|
|
2000-04-12 02:55:05 -07:00
|
|
|
OCAML299TO3= lexer299.cmo ocaml299to3.cmo
|
|
|
|
LIBRARY3= misc.cmo warnings.cmo linenum.cmo location.cmo
|
1999-12-17 02:04:52 -08:00
|
|
|
|
2000-04-12 02:55:05 -07:00
|
|
|
ocaml299to3: $(OCAML299TO3)
|
|
|
|
$(CAMLC) $(LINKFLAGS) -o ocaml299to3 $(LIBRARY3) $(OCAML299TO3)
|
1999-12-17 02:04:52 -08:00
|
|
|
|
2000-04-12 02:55:05 -07:00
|
|
|
lexer299.ml: lexer299.mll
|
|
|
|
$(CAMLLEX) lexer299.mll
|
1999-12-17 02:04:52 -08:00
|
|
|
|
2000-08-10 02:58:08 -07:00
|
|
|
#install::
|
|
|
|
# cp ocaml299to3 $(BINDIR)/ocaml299to3$(EXE)
|
1999-12-17 02:04:52 -08:00
|
|
|
|
|
|
|
clean::
|
2000-04-12 02:55:05 -07:00
|
|
|
rm -f ocaml299to3 lexer299.ml
|
1999-12-17 02:04:52 -08:00
|
|
|
|
1996-10-07 06:20:28 -07:00
|
|
|
# The preprocessor for asm generators
|
|
|
|
|
|
|
|
CVT_EMIT=cvt_emit.cmo
|
|
|
|
|
|
|
|
cvt_emit: $(CVT_EMIT)
|
|
|
|
$(CAMLC) $(LINKFLAGS) -o cvt_emit $(CVT_EMIT)
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f cvt_emit
|
|
|
|
|
|
|
|
cvt_emit.ml: cvt_emit.mll
|
|
|
|
$(CAMLLEX) cvt_emit.mll
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f cvt_emit.ml
|
|
|
|
|
|
|
|
beforedepend:: cvt_emit.ml
|
|
|
|
|
1995-10-24 08:46:19 -07:00
|
|
|
# The bytecode disassembler
|
|
|
|
|
1995-05-22 08:43:44 -07:00
|
|
|
DUMPOBJ=opnames.cmo dumpobj.cmo
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
dumpobj: $(DUMPOBJ)
|
1999-11-10 04:48:47 -08:00
|
|
|
$(CAMLC) $(LINKFLAGS) -o dumpobj \
|
2000-04-21 01:13:22 -07:00
|
|
|
misc.cmo tbl.cmo config.cmo ident.cmo \
|
2000-03-05 11:18:50 -08:00
|
|
|
opcodes.cmo bytesections.cmo $(DUMPOBJ)
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f dumpobj
|
|
|
|
|
|
|
|
opnames.ml: ../byterun/instruct.h
|
|
|
|
sed -e '/\/\*/d' \
|
1997-01-01 07:38:23 -08:00
|
|
|
-e '/^#/d' \
|
1995-05-04 03:15:53 -07:00
|
|
|
-e 's/enum \(.*\) {/let names_of_\1 = [|/' \
|
|
|
|
-e 's/};$$/ |]/' \
|
|
|
|
-e 's/\([A-Z][A-Z_0-9a-z]*\)/"\1"/g' \
|
|
|
|
-e 's/,/;/g' \
|
|
|
|
../byterun/instruct.h > opnames.ml
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f opnames.ml
|
|
|
|
|
|
|
|
beforedepend:: opnames.ml
|
|
|
|
|
1995-10-24 08:46:19 -07:00
|
|
|
# Dump .cmx files
|
|
|
|
|
1995-07-02 09:47:48 -07:00
|
|
|
dumpapprox: dumpapprox.cmo
|
|
|
|
$(CAMLC) $(LINKFLAGS) -o dumpapprox config.cmo dumpapprox.cmo
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f dumpapprox
|
|
|
|
|
1995-10-24 08:46:19 -07:00
|
|
|
# Print imported interfaces for .cmo files
|
|
|
|
|
1995-10-09 06:37:11 -07:00
|
|
|
objinfo: objinfo.cmo
|
|
|
|
$(CAMLC) $(LINKFLAGS) -o objinfo config.cmo objinfo.cmo
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f objinfo
|
|
|
|
|
1999-03-14 05:14:35 -08:00
|
|
|
# Scan object files for required primitives
|
|
|
|
|
|
|
|
PRIMREQ=primreq.cmo
|
|
|
|
|
|
|
|
primreq: $(PRIMREQ)
|
|
|
|
$(CAMLC) $(LINKFLAGS) -o primreq config.cmo $(PRIMREQ)
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f primreq
|
|
|
|
|
1995-10-24 08:46:19 -07:00
|
|
|
# Common stuff
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
.SUFFIXES:
|
1995-05-22 08:43:44 -07:00
|
|
|
.SUFFIXES: .ml .cmo .mli .cmi
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1995-05-22 08:43:44 -07:00
|
|
|
.ml.cmo:
|
1995-05-04 03:15:53 -07:00
|
|
|
$(CAMLC) -c $(COMPFLAGS) $<
|
|
|
|
|
1995-05-22 08:43:44 -07:00
|
|
|
.mli.cmi:
|
1995-05-04 03:15:53 -07:00
|
|
|
$(CAMLC) -c $(COMPFLAGS) $<
|
|
|
|
|
|
|
|
clean::
|
1995-05-22 08:43:44 -07:00
|
|
|
rm -f *.cmo *.cmi
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
depend: beforedepend
|
1996-04-30 07:53:58 -07:00
|
|
|
$(CAMLRUN) ./ocamldep $(INCLUDES) *.mli *.ml > .depend
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
include .depend
|