ocaml/test/Moretest/Makefile

223 lines
7.2 KiB
Makefile

#########################################################################
# #
# 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$
include ../../config/Makefile
CAMLC=../../boot/ocamlrun ../../ocamlc -I ../../stdlib
CAMLOPT=../../boot/ocamlrun ../../ocamlopt -I ../../stdlib
OPTFLAGS=-S -g
CAMLDEP=../../boot/ocamlrun ../../tools/ocamldep
CAMLRUN=../../byterun/ocamlrun
CODERUNPARAMS=OCAMLRUNPARAM='o=100'
OUTS=callback.bin manyargs.bin \
cm.byt cmlinked.bin cm.bin \
bigarrays.bin bigarrf.bin fftba.bin globroots.bin float.bin intext.bin \
printf scanf regexp.byt regexp.opt md5.bin recmod.bin
BROKENS=# multdef.bin
all: $(OUTS)
callback.byt: callback.cmo callbackprim.o
$(CAMLC) -o callback.byt -custom callback.cmo callbackprim.o ../../otherlibs/unix/libunix.a
callback.bin: callback.cmx callbackprim.o
$(CAMLOPT) -o callback.bin callback.cmx callbackprim.o ../../otherlibs/unix/libunix.a
manyargs.byt: manyargs.cmo manyargsprim.o
$(CAMLC) -o manyargs.byt -custom manyargs.cmo manyargsprim.o
manyargs.bin: manyargs.cmx manyargsprim.o
$(CAMLOPT) -inline 0 -o manyargs.bin manyargs.cmx manyargsprim.o
multdef.bin: multdef.cmx usemultdef.cmx
$(CAMLOPT) -o multdef.bin multdef.cmx usemultdef.cmx
cm.byt: cmcaml.ml cmstub.c cmmain.c
$(CAMLC) -custom -o cm.byt cmcaml.ml cmstub.c cmmain.c
cmlinked.bin: cmcaml.ml cmstub.c cmmain.c
$(CAMLC) -output-obj -o cm.o cmcaml.ml
$(BYTECC) -g -o cmlinked.bin cm.o -I../../byterun -DNO_BYTECODE_FILE cmstub.c cmmain.c ../../byterun/libcamlrun.a $(BYTECCLIBS)
cm.bin: cmcaml.ml cmstub.c cmmain.c
$(CAMLOPT) -output-obj -o cm.o cmcaml.ml
$(NATIVECC) -g -o cm.bin cm.o -I$(LIBDIR) -DNO_BYTECODE_FILE cmstub.c cmmain.c ../../asmrun/libasmrun.a $(NATIVECCLIBS)
bigarrays.byt: ../../otherlibs/bigarray/bigarray.cma \
../../otherlibs/bigarray/libbigarray.a bigarrays.ml
$(CAMLC) -custom -o bigarrays.byt \
-I ../../otherlibs/bigarray \
-I ../../otherlibs/unix \
unix.cma bigarray.cma bigarrays.ml
bigarrays.bin: ../../otherlibs/bigarray/bigarray.cmxa \
../../otherlibs/bigarray/libbigarray.a bigarrays.ml
$(CAMLOPT) $(OPTFLAGS) -o bigarrays.bin \
-I ../../otherlibs/bigarray \
-I ../../otherlibs/unix \
unix.cmxa bigarray.cmxa bigarrays.ml
bigarrf.byt: bigarrf.o bigarrfstub.o \
../../otherlibs/bigarray/bigarray.cma \
../../otherlibs/bigarray/libbigarray.a bigarrfml.ml
$(CAMLC) -custom -o bigarrf.byt \
-I ../../otherlibs/bigarray \
-I ../../otherlibs/unix \
unix.cma bigarray.cma bigarrf.ml \
bigarrf.o bigarrfstub.o \
../../byterun/libcamlrun.a -cclib -lg2c
bigarrf.bin: bigarrf.o bigarrfstub.o \
../../otherlibs/bigarray/bigarray.cma \
../../otherlibs/bigarray/libbigarray.a bigarrfml.ml
$(CAMLOPT) $(OPTFLAGS) -o bigarrf.bin \
-I ../../otherlibs/bigarray \
-I ../../otherlibs/unix \
unix.cma bigarray.cma bigarrf.ml \
bigarrf.o bigarrfstub.o \
../../byterun/libcamlrun.a -cclib -lg2c
bigarrf.o: bigarrf.f
g77 -c bigarrf.f
bigarrfstub.o: bigarrfstub.c
$(NATIVECC) $(NATIVECCCOMPOPTS) -I../../byterun -I../../otherlibs/bigarray -c bigarrfstub.c
fftba.byt: fftba.ml
$(CAMLC) -o fftba.byt -I ../../otherlibs/bigarray \
bigarray.cma fftba.ml
fftba.bin: fftba.ml
$(CAMLOPT) $(OPTFLAGS) -o fftba.bin -I ../../otherlibs/bigarray \
bigarray.cmxa fftba.ml
globroots.byt: globroots.ml globrootsprim.o
$(CAMLC) -custom -o globroots.byt globroots.ml globrootsprim.o
globroots.bin: globroots.ml globrootsprim.o
$(CAMLOPT) -o globroots.bin globroots.ml globrootsprim.o
globrootsprim.o: globrootsprim.c
$(BYTECC) $(BYTECCCOMPOPTS) -I../../byterun -c globrootsprim.c
float.byt: float.cmo
${CAMLC} -o float.byt float.cmo
float.bin: float.cmx
${CAMLOPT} -o float.bin float.cmx
intext.byt: intext.cmo intextaux.o
${CAMLC} -o intext.byt -custom intext.cmo intextaux.o
intext.bin: intext.cmx intextaux.o
${CAMLOPT} -o intext.bin intext.cmx intextaux.o
tprintf.byt: testing.cmo tprintf.cmo
${CAMLC} -o tprintf.byt testing.cmo tprintf.cmo
tprintf.bin: testing.cmx tprintf.cmx
${CAMLOPT} -o tprintf.bin testing.cmx tprintf.cmx
printf: tprintf.byt tprintf.bin
./tprintf.byt
./tprintf.bin
tscanf.byt: testing.cmo tscanf.cmo
${CAMLC} -o tscanf.byt testing.cmo tscanf.cmo
tscanf.bin: testing.cmx tscanf.cmx
${CAMLOPT} -o tscanf.bin testing.cmx tscanf.cmx
tscanf2.byt: tscanf2_io.cmo tscanf2_slave.cmo tscanf2_master.cmo
${CAMLC} -o tscanf2_slave.byt tscanf2_io.cmo tscanf2_slave.cmo
${CAMLC} -o tscanf2_master.byt unix.cma \
tscanf2_io.cmo tscanf2_master.cmo
tscanf2.bin: tscanf2_io.cmx tscanf2_slave.cmx tscanf2_master.cmx
${CAMLOPT} -o tscanf2_slave.bin tscanf2_io.cmx tscanf2_slave.cmx
${CAMLOPT} -o tscanf2_master.bin unix.cmxa \
tscanf2_io.cmx tscanf2_master.cmx
scanf: tscanf.byt tscanf.bin tscanf2.byt tscanf2.bin
./tscanf.byt
./tscanf.bin
./tscanf2_master.byt ./tscanf2_slave.byt
./tscanf2_master.bin ./tscanf2_slave.bin
regexp.byt: ../../otherlibs/str/str.cma regexp.ml
$(CAMLC) -custom -I ../../otherlibs/str -o regexp.byt str.cma regexp.ml
regexp.opt: ../../otherlibs/str/str.cmxa regexp.ml
$(CAMLOPT) -I ../../otherlibs/str -o regexp.opt str.cmxa regexp.ml
md5.bin: md5.ml
$(CAMLOPT) -unsafe -inline 100 -o md5.bin md5.ml
recmod.byt: recmod.cmo
$(CAMLC) -o recmod.byt recmod.cmo
recmod.bin: recmod.cmx
$(CAMLOPT) -o recmod.bin recmod.cmx
length.cmo: length.cmi
tlength.cmo: length.cmo
tlength.byt: length.cmo tlength.cmo
$(CAMLC) -g -o tlength.byt length.cmo tlength.cmo
float_record.cmo: float_record.cmi
tfloat_record.cmo: float_record.cmo
tfloat_record.byt: float_record.cmo tfloat_record.cmo
$(CAMLC) -g -o tfloat_record.byt float_record.cmo tfloat_record.cmo
# Common rules
.SUFFIXES:
.SUFFIXES: .mli .ml .cmi .cmo .cmx .byt .fast.byt .bin .fast.bin .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.bin:
$(CAMLOPT) $(OPTFLAGS) -o $*.bin $<
.ml.fast.bin:
cp $*.ml $*_fast.ml
$(CAMLOPT) $(OPTFLAGS) -unsafe -o $*.fast.bin $*_fast.ml
rm -f $*_fast.ml
.mli.cmi:
$(CAMLC) -c $<
.ml.cmo:
$(CAMLC) -c -g $<
.ml.cmx:
$(CAMLOPT) $(OPTFLAGS) -c $<
.c.o:
$(NATIVECC) $(NATIVECCCOMPOPTS) -I../../byterun -c $<
clean::
rm -f *.byt *.bin
rm -f *.cm[iox] *.[os]
rm -f *~
rm -f intext.data
# Dependencies
#depend:
# $(CAMLDEP) *.mli *.ml > .depend
include .depend