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-12-20 02:39:12 -08:00
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
CAMLC=../../boot/ocamlrun ../../ocamlc -I ../../stdlib
|
|
|
|
CAMLOPT=../../boot/ocamlrun ../../ocamlopt -I ../../stdlib
|
1995-12-20 02:39:12 -08:00
|
|
|
OPTFLAGS=-S
|
1996-04-30 07:53:58 -07:00
|
|
|
CAMLDEP=../../boot/ocamlrun ../../tools/ocamldep
|
|
|
|
CAMLRUN=../../byterun/ocamlrun
|
1999-11-18 09:57:48 -08:00
|
|
|
CODERUNPARAMS=OCAMLRUNPARAM='o=100'
|
1995-12-20 02:39:12 -08:00
|
|
|
|
|
|
|
callback.byt: callback.cmo callbackprim.o
|
1997-11-28 02:35:58 -08:00
|
|
|
$(CAMLC) -o callback.byt -custom callback.cmo callbackprim.o ../../otherlibs/unix/libunix.a
|
1995-12-20 02:39:12 -08:00
|
|
|
callback.out: callback.cmx callbackprim.o
|
1997-11-28 02:35:58 -08:00
|
|
|
$(CAMLOPT) -o callback.out callback.cmx callbackprim.o ../../otherlibs/unix/libunix.a
|
1995-12-20 02:39:12 -08:00
|
|
|
|
|
|
|
manyargs.byt: manyargs.cmo manyargsprim.o
|
|
|
|
$(CAMLC) -o manyargs.byt -custom manyargs.cmo manyargsprim.o
|
|
|
|
manyargs.out: manyargs.cmx manyargsprim.o
|
|
|
|
$(CAMLOPT) -o manyargs.out manyargs.cmx manyargsprim.o
|
|
|
|
|
1996-03-20 02:51:37 -08:00
|
|
|
multdef.out: multdef.cmx usemultdef.cmx
|
|
|
|
$(CAMLOPT) -o multdef.out multdef.cmx usemultdef.cmx
|
|
|
|
|
1997-03-17 02:18:39 -08:00
|
|
|
cm.byt: cmcaml.ml cmstub.c cmmain.c
|
1997-02-02 06:54:33 -08:00
|
|
|
$(CAMLC) -custom -o cm.byt cmcaml.ml cmstub.c cmmain.c
|
1996-11-08 06:47:40 -08:00
|
|
|
|
1997-03-17 02:18:39 -08:00
|
|
|
cmlinked.out: cmcaml.ml cmstub.c cmmain.c
|
1997-02-02 06:54:33 -08:00
|
|
|
$(CAMLC) -output-obj -o cm.o cmcaml.ml
|
1997-03-17 05:00:55 -08:00
|
|
|
$(BYTECC) -g -o cmlinked.out cm.o -I../../byterun -DNO_BYTECODE_FILE cmstub.c cmmain.c ../../byterun/libcamlrun.a $(CCLIBS)
|
1996-11-08 06:47:40 -08:00
|
|
|
|
1997-03-17 02:18:39 -08:00
|
|
|
cm.out: cmcaml.ml cmstub.c cmmain.c
|
1997-02-02 06:54:33 -08:00
|
|
|
$(CAMLOPT) -output-obj -o cm.o cmcaml.ml
|
1999-11-18 05:14:27 -08:00
|
|
|
$(NATIVECC) -g -o cm.out cm.o -I$(LIBDIR) -DNO_BYTECODE_FILE cmstub.c cmmain.c ../../asmrun/libasmrun.a $(CCLIBS)
|
1996-11-08 06:47:40 -08:00
|
|
|
|
1995-12-20 02:39:12 -08:00
|
|
|
# Common rules
|
|
|
|
|
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .mli .ml .cmi .cmo .cmx .byt .fast.byt .out .fast.out .c .o
|
|
|
|
|
|
|
|
.ml.byt:
|
|
|
|
$(CAMLC) -o $*.byt $<
|
|
|
|
|
|
|
|
.ml.fast.byt:
|
|
|
|
cp $*.ml $*_fast.ml
|
|
|
|
$(CAMLC) -unsafe -o $*.fast.byt $*_fast.ml
|
|
|
|
rm -f $*_fast.ml
|
|
|
|
|
|
|
|
.ml.out:
|
|
|
|
$(CAMLOPT) $(OPTFLAGS) -o $*.out $<
|
|
|
|
|
|
|
|
.ml.fast.out:
|
|
|
|
cp $*.ml $*_fast.ml
|
|
|
|
$(CAMLOPT) $(OPTFLAGS) -unsafe -o $*.fast.out $*_fast.ml
|
|
|
|
rm -f $*_fast.ml
|
|
|
|
|
|
|
|
.mli.cmi:
|
|
|
|
$(CAMLC) -c $<
|
|
|
|
|
|
|
|
.ml.cmo:
|
|
|
|
$(CAMLC) -c $<
|
|
|
|
|
|
|
|
.ml.cmx:
|
|
|
|
$(CAMLOPT) $(OPTFLAGS) -c $<
|
|
|
|
|
|
|
|
.c.o:
|
1997-02-03 06:41:42 -08:00
|
|
|
$(NATIVECC) $(NATIVECCCOMPOPTS) -I../../byterun -c $<
|
1995-12-20 02:39:12 -08:00
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f *.byt *.out
|
|
|
|
rm -f *.cm[iox] *.[os]
|
|
|
|
rm -f *~
|
1996-04-01 07:26:56 -08:00
|
|
|
rm -f intext.data
|
1995-12-20 02:39:12 -08:00
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
|
|
|
|
depend:
|
|
|
|
$(CAMLDEP) *.mli *.ml > .depend
|
|
|
|
|
|
|
|
include .depend
|
|
|
|
|