87 lines
2.4 KiB
Makefile
87 lines
2.4 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 GNU Library General Public License. #
|
|
# #
|
|
#########################################################################
|
|
|
|
# $Id$
|
|
|
|
# Makefile for the "num" (exact rational arithmetic) library
|
|
|
|
include ../../config/Makefile
|
|
|
|
# Compilation options
|
|
CC=$(BYTECC)
|
|
CFLAGS=-O -I./bignum/h -I../../byterun $(BYTECCCOMPOPTS)
|
|
CAMLC=../../boot/ocamlrun ../../ocamlc -I ../../stdlib -w s
|
|
CAMLOPT=../../boot/ocamlrun ../../ocamlopt -I ../../stdlib -w s
|
|
|
|
CAMLOBJS=int_misc.cmo string_misc.cmo nat.cmo big_int.cmo arith_flags.cmo \
|
|
ratio.cmo num.cmo arith_status.cmo
|
|
|
|
CMIFILES=big_int.cmi nat.cmi num.cmi ratio.cmi arith_status.cmi
|
|
|
|
COBJS=nat_stubs.o
|
|
|
|
all: libnums.a nums.cma $(CMIFILES)
|
|
|
|
allopt: libnums.a nums.cmxa $(CMIFILES)
|
|
|
|
nums.cma: $(CAMLOBJS)
|
|
$(CAMLC) -a -o nums.cma -custom $(CAMLOBJS) -cclib -lnums
|
|
|
|
nums.cmxa: $(CAMLOBJS:.cmo=.cmx)
|
|
$(CAMLOPT) -a -o nums.cmxa $(CAMLOBJS:.cmo=.cmx) -cclib -lnums
|
|
|
|
libnums.a: bignum/libbignum.a $(COBJS)
|
|
cp bignum/libbignum.a libnums.a
|
|
ar r libnums.a $(COBJS)
|
|
$(RANLIB) libnums.a
|
|
|
|
bignum/libbignum.a:
|
|
cd bignum; $(MAKE) $(BIGNUM_ARCH) CC="$(CC) $(BYTECCCOMPOPTS)"
|
|
|
|
$(CAMLOBJS:.cmo=.cmx): ../../ocamlopt
|
|
|
|
install:
|
|
cp libnums.a $(LIBDIR)/libnums.a
|
|
cd $(LIBDIR); $(RANLIB) libnums.a
|
|
cp nums.cma $(CMIFILES) $(CMIFILES:.cmi=.mli) $(LIBDIR)
|
|
|
|
installopt:
|
|
cp $(CAMLOBJS:.cmo=.cmx) nums.cmxa nums.a $(LIBDIR)
|
|
cd $(LIBDIR); $(RANLIB) nums.a
|
|
|
|
partialclean:
|
|
rm -f *.cm*
|
|
|
|
clean: partialclean
|
|
rm -f *.a *.o
|
|
cd bignum; $(MAKE) scratch
|
|
cd test; $(MAKE) clean
|
|
|
|
.SUFFIXES: .ml .mli .cmi .cmo .cmx
|
|
|
|
.mli.cmi:
|
|
$(CAMLC) -c $(COMPFLAGS) $<
|
|
|
|
.ml.cmo:
|
|
$(CAMLC) -c $(COMPFLAGS) $<
|
|
|
|
.ml.cmx:
|
|
$(CAMLOPT) -c $(COMPFLAGS) $<
|
|
|
|
nat_stubs.o: nat.h
|
|
|
|
depend:
|
|
gcc -MM $(CFLAGS) *.c > .depend
|
|
../../boot/ocamlrun ../../tools/ocamldep *.mli *.ml >> .depend
|
|
|
|
include .depend
|