2000-02-22 09:33:01 -08:00
|
|
|
#########################################################################
|
|
|
|
# #
|
2011-07-27 07:17:02 -07:00
|
|
|
# OCaml #
|
2000-02-22 09:33:01 -08:00
|
|
|
# #
|
|
|
|
# Xavier Leroy, projet Cristal, INRIA Rocquencourt #
|
|
|
|
# #
|
|
|
|
# Copyright 1999 Institut National de Recherche en Informatique et #
|
|
|
|
# en Automatique. All rights reserved. This file is distributed #
|
2001-12-07 05:41:02 -08:00
|
|
|
# under the terms of the GNU Library General Public License, with #
|
|
|
|
# the special exception on linking described in file ../../LICENSE. #
|
2000-02-22 09:33:01 -08:00
|
|
|
# #
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
2007-11-06 07:16:56 -08:00
|
|
|
LIBNAME=bigarray
|
2008-01-04 01:52:27 -08:00
|
|
|
EXTRACFLAGS=-I../unix -DIN_OCAML_BIGARRAY -DCAML_NAME_SPACE
|
2007-11-06 07:16:56 -08:00
|
|
|
EXTRACAMLFLAGS=-I ../unix
|
|
|
|
COBJS=bigarray_stubs.$(O) mmap_unix.$(O)
|
|
|
|
CAMLOBJS=bigarray.cmo
|
|
|
|
HEADERS=bigarray.h
|
2000-02-22 09:33:01 -08:00
|
|
|
|
2007-11-06 07:16:56 -08:00
|
|
|
include ../Makefile
|
2000-02-22 09:33:01 -08:00
|
|
|
|
|
|
|
depend:
|
2007-11-06 07:16:56 -08:00
|
|
|
gcc -MM $(CFLAGS) *.c > .depend
|
2000-02-22 09:33:01 -08:00
|
|
|
../../boot/ocamlrun ../../tools/ocamldep *.mli *.ml >> .depend
|
|
|
|
|
|
|
|
include .depend
|