ocaml/otherlibs/num/Makefile

87 lines
2.5 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, with #
# the special exception on linking described in file ../../LICENSE. #
# #
#########################################################################
# $Id$
# Makefile for the "num" (exact rational arithmetic) library
include ../../config/Makefile
# Compilation options
CC=$(BYTECC)
CFLAGS=-O -I../../byterun $(BYTECCCOMPOPTS) $(SHAREDCCCOMPOPTS) \
-DBNG_ARCH_$(BNG_ARCH) -DBNG_ASM_LEVEL=$(BNG_ASM_LEVEL)
CAMLC=../../ocamlcomp.sh
CAMLOPT=../../ocamlcompopt.sh
MKLIB=../../boot/ocamlrun ../../tools/ocamlmklib
COMPFLAGS=-warn-error A -g
CAMLOBJS=int_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=bng.o nat_stubs.o
all: libnums.a nums.cma $(CMIFILES)
allopt: libnums.a nums.cmxa $(CMIFILES)
nums.cma: $(CAMLOBJS)
$(MKLIB) -ocamlc '$(CAMLC)' -o nums $(CAMLOBJS)
nums.cmxa: $(CAMLOBJS:.cmo=.cmx)
$(MKLIB) -ocamlopt '$(CAMLOPT)' -o nums $(CAMLOBJS:.cmo=.cmx)
libnums.a: $(COBJS)
$(MKLIB) -o nums $(COBJS)
$(CAMLOBJS:.cmo=.cmx): ../../ocamlopt
install:
if test -f dllnums.so; then cp dllnums.so $(STUBLIBDIR)/dllnums.so; fi
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 *.so
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) $<
bng.o: bng.h bng_digit.c \
bng_alpha.c bng_amd64.c bng_ia32.c bng_mips.c bng_ppc.c bng_sparc.c
depend:
gcc -MM $(CFLAGS) *.c > .depend
../../boot/ocamlrun ../../tools/ocamldep *.mli *.ml >> .depend
include .depend